SlideShare a Scribd company logo
Intro to HTML & CSS
Intro to HTML & CSS
What we’ll cover?
• What HTML and CSS is
• Structure of a HTML Document
• HTML editing software
• How to create a webpage
• Text, links, lists and images
• Various other HTML tags
• Adding CSS to a webpage
• Where to learn more
What is HTML?
Intro to HTML & CSS
Hyper Text
Markup Language
Hypertext is text
which contains links to other texts.
Markup languages are designed for the
processing, definition and presentation of
text. A markup language is to define the
visual elements of the web page.
Why do we need HTML?
• To define the structure of a web page
(HTML is the Skeleton of any modern
website)
• To add contents to our page
(text, pictures, videos etc…)
• To link pages to one another in order to
build an entire website
What is CSS?
HTML HTML+CSS
Cascading
Style Sheets
Cascading means
that styles can fall
from one style
sheet to another,
enabling multiple
style sheets to be
used on one HTML
document.
Why do we need CSS?
• Allows us to style any web page
• CSS describes how HTML elements should
be displayed
• Because of its cascading nature it allows
you to overwrite any previously defined
rules
Front-end Technologies
3 Awesome Front-end
Technologies
HTML
The structure of a web page
CSS
The styling of a web page
JavaScript
Makes a web page interactive
HTML + CSS + JavaScript = Black Magic
How does a
webpage work?
HTML + CSS = Source Code
User-friendly visible result
Intro to HTML & CSS
How to view the page
source?
Right Click
Select View page
source from the
dropdown menu
Page source example
How to inspect page
elements?
Right Click
Select Inspect
from the
dropdown menu
Page source example
Google Chrome Inspector in ACTION
• A programming software
(but every text editor will do)
...
• Your file, named in .html
→ my-own-page.html
• A browser, to display your page.
What do we need?
• FileZilla to upload the page to a server
(FileZilla or CyberDuck)
What do we need?
Intro to HTML & CSS
Intro to HTML & CSS
Coding correctly maximizes the chance
to have your page displayed correctly on
most of the platforms!
Intro to HTML & CSS
Intro to HTML & CSS
Email Clients
the late runners
• Think about mail clients as
even-less-compliant browsers.
Responsive Design
• Adapts to different screen sizes
• One version for all the devices that
supports HTML and other modern web
technologies
Intro to HTML & CSS
Now its easier than ever to
create mobile apps using
HTML, CSS and JavaScript.
Mozilla's Firefox OS
Like every language, HTML
and CSS have rules and
standards.
HTML5 CSS3
Intro to HTML & CSS
A - Boxes principle
• A box into a box into a box… : HTML is like
Russian dolls.
• Each of those boxes is called a tag.
A - Boxes principle
HTML	DOCUMENT
HEAD BODY
TABLETITLE
CSS
PARAGRAPH
IMAGE
B - What is a tag?
• A tag is used to declare a specific type of
container or element.
• TAG STRUCTURE :
<name (attributes (style/css)) ... > [content] </name>
Example
• Code
<p align=“center” style=“font-size: 34px; color: red;”>
Hello World
</p>
• Result
Hello World !
C - A Basic Page
<!DOCTYPE html >
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-
8" />
<title>My page</title>
</head>
<body>
<p align=“center" style="font-size:14px; color:#c00;">Hello World
!</p>
</body>
</html>
Which	language	is	
used	→	HTML
The	documentHEAD - here:
- Special	characters
- Page	title
Body
→	CONTENT
(here	a	paragraph)
Hello World !
So… where is the CSS?
Method - 1
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-
8" />
<title>My page</title>
</head>
<body>
<p align="justify" style="font-size:14px;color:#c00;> Hello World
!</p>
</body>
</html>
<!doctype html>
<html>
<head>
<title>My page</title>
<style type="text/css">.
p {
font-size: 14px;
color: #c00;
text-align: center;
}
</style>.
</head>
<body>
<p>Hello World !</p>
</body>
</html>
Method - 2
<!doctype html>
<html>
<head>
<title>My page</title>
<link rel="stylesheet" type="text/css" href="my-style.css">.
</head>
<body>
<p>Hello World !</p>
</body>
</html> p {
font-size: 14px;
color: #c00;
text-align: justify;
}
my-style.css :
Method - 3
Intro to HTML & CSS
D – Popular HTML tags
• Heading
• Paragraph
• Anchor / Link
• Image
• Unordered List
• List Item
• Horizontal Rule
• Division
• Table
<h1> - <h6>
<p>
<a>
<img>
<ul>
<li>
<hr>
<div>
<table>
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Time to talk about CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Hands-on Tutorial
Lets build a website and learn
making mistakes!
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Step-1
• Create a folder named Hello [Syed]
• Fire up your code editor
• Write Hello World and save the file as
index.html
• Create another file named style.css
Basic HTML Structure
Let’s give a title to our webpage
Comments
Populate Body : Header section
Populate Body : About Me section
Contact
Form
Image Gallery Section
Horizontal Row
Newsletter Section
Footer Section
Closing Body and HTML
tags
Intro to HTML & CSS
Intro to HTML & CSS
Styling Header
section
Padding: 100px
Padding: 100px
Styling About me
section
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Link an external
style sheet
e.g. style.css
Align Center
the page
External Font
HTML
CSS
HTML
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Common
Styles
Styling
Button
Intro to HTML & CSS
Intro to HTML & CSS
Styling
Button
Styling
Button
Styling
Button
Linking
Button
Intro to HTML & CSS
Styling
Button
Styling
Header section
Intro to HTML & CSS
Styling
Header section
Styling
Header section
Intro to HTML & CSS
Intro to HTML & CSS
Styling
About me section
Styling
About me section
Intro to HTML & CSS
Styling
Contact form section
Styling
Contact form section
Styling
Contact form section
Mobile Layout
with Table tag
Mobile Layout
with <div> tag
Styling
Gallery section
hr section
Newsletter
section
Styling
Contact form section
https://codepen.io/sami3d/pen/YZbGmq
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Intro to HTML & CSS
Why do they get rendered
differently?
• They are hosted in a 3rd party server
• Because of security issues
• Different email clients uses different
rendering engine
Solution?
• We design them considering its 1995!!
• We use tables
• We use inline css
• We avoid complicated Layouts
• We avoid HTML5 and CSS3
Intro to HTML & CSS
Nothing !
<table width="300" height="200" align="center">
<tr style="font-size:18px;color:#000000;" align="center">
<td width="100" style="background-color:#CC0000;">Holly</td>
<td style="background-color:#00CCFF, color:#FFFFFF;">Molly !</td>
</tr>
</table>
Holly Molly !
Some tips:
• Use of <table> instead of <div>
• Sliced images have to have
style="display:block;".
• Any special character in text (é, à, “, €, …)
should be encoded :
é → &eacute; OR € → &euro;
Some tips:
• CSS style has to be mainly inline (inside the
tag’s style=" " attribute). If there is some CSS
in the <head> section, it’s a best practice to
copy and put them at the bottom again.
Some tips:
• “Pixels” (image of 1x1 pixel),
like any content, has to be
before closing </body></html>
tags
Intro to HTML & CSS
Intro to HTML & CSS
THE NET NINJA
Interactive Lessons
Video Tutorials
Intro to HTML & CSS
Things we have discussed
• What HTML and CSS is
• Structure of a HTML Document
• HTML editing software
• How to create a webpage
• Text, links, lists and images
• Various other HTML tags
• Adding CSS to a webpage
• Adding JavaScript to a webpage
• Where to learn more
Intro to HTML & CSS

More Related Content

What's hot (20)

Html
HtmlHtml
Html
Nisa Soomro
 
HTML & CSS Masterclass
HTML & CSS MasterclassHTML & CSS Masterclass
HTML & CSS Masterclass
Bernardo Raposo
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
Shawn Calvert
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
Mario Hernandez
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
Sayan De
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
Ferdous Mahmud Shaon
 
Html table
Html tableHtml table
Html table
JayjZens
 
CSS for Beginners
CSS for BeginnersCSS for Beginners
CSS for Beginners
Amit Kumar Singh
 
Web Development Presentation
Web Development PresentationWeb Development Presentation
Web Development Presentation
TurnToTech
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
WordPress Memphis
 
CSS
CSSCSS
CSS
Vladimir Zhidal
 
Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)
Chris Poteet
 
CSS
CSSCSS
CSS
seedinteractive
 
(Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS (Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS
Dave Kelly
 
Web Development using HTML & CSS
Web Development using HTML & CSSWeb Development using HTML & CSS
Web Development using HTML & CSS
Shashank Skills Academy
 
Html
HtmlHtml
Html
Cerise Anderson
 
How Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) WorksHow Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) Works
Amit Tyagi
 
Html & Css presentation
Html  & Css presentation Html  & Css presentation
Html & Css presentation
joilrahat
 
Introduction to Html
Introduction to HtmlIntroduction to Html
Introduction to Html
Folasade Adedeji
 
HTML5 & CSS3
HTML5 & CSS3 HTML5 & CSS3
HTML5 & CSS3
Ian Lintner
 

Similar to Intro to HTML & CSS (20)

Introduction css
Introduction cssIntroduction css
Introduction css
sagaroceanic11
 
Introduction css
Introduction cssIntroduction css
Introduction css
sagaroceanic11
 
wd project.pptx
wd project.pptxwd project.pptx
wd project.pptx
dsffsdf1
 
Punch it Up with HTML and CSS
Punch it Up with HTML and CSSPunch it Up with HTML and CSS
Punch it Up with HTML and CSS
mtlgirlgeeks
 
Girls Can Code East Brunswick Workshop Slides
Girls Can Code East Brunswick Workshop SlidesGirls Can Code East Brunswick Workshop Slides
Girls Can Code East Brunswick Workshop Slides
Kayla Leung
 
Thinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSSThinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSS
TJ Stalcup
 
slidesgo-mastering-html-and-css-a-comprehensive-guide-to-tags-and-elements-20...
slidesgo-mastering-html-and-css-a-comprehensive-guide-to-tags-and-elements-20...slidesgo-mastering-html-and-css-a-comprehensive-guide-to-tags-and-elements-20...
slidesgo-mastering-html-and-css-a-comprehensive-guide-to-tags-and-elements-20...
MrunmayiLohakare
 
Basic HTML/CSS
Basic HTML/CSSBasic HTML/CSS
Basic HTML/CSS
Chris Heiden
 
HTML+CSS: how to get started
HTML+CSS: how to get startedHTML+CSS: how to get started
HTML+CSS: how to get started
Dimitris Tsironis
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
danpaquette
 
3 coding101 fewd_lesson3_your_first_website 20210105
3 coding101 fewd_lesson3_your_first_website 202101053 coding101 fewd_lesson3_your_first_website 20210105
3 coding101 fewd_lesson3_your_first_website 20210105
John Picasso
 
Rakshat bhati
Rakshat bhatiRakshat bhati
Rakshat bhati
Rakshat bhati
 
Introduction to HTML-CSS-Javascript.pdf
Introduction to HTML-CSS-Javascript.pdfIntroduction to HTML-CSS-Javascript.pdf
Introduction to HTML-CSS-Javascript.pdf
DakshPratapSingh1
 
Basics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointBasics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPoint
Sahil Gandhi
 
Web development using HTML and CSS
Web development using HTML and CSSWeb development using HTML and CSS
Web development using HTML and CSS
SiddhantSingh980217
 
Styling Your Web Pages with Cascading Style Sheets / EDU course / University ...
Styling Your Web Pages with Cascading Style Sheets / EDU course / University ...Styling Your Web Pages with Cascading Style Sheets / EDU course / University ...
Styling Your Web Pages with Cascading Style Sheets / EDU course / University ...
Patrick Lauke
 
ppt.ppt
ppt.pptppt.ppt
ppt.ppt
Sana903754
 
GDG On Campus NBNSCOE Web Workshop Day 1 : HTML & CSS
GDG On Campus  NBNSCOE Web Workshop Day 1 : HTML & CSSGDG On Campus  NBNSCOE Web Workshop Day 1 : HTML & CSS
GDG On Campus NBNSCOE Web Workshop Day 1 : HTML & CSS
udaymore742
 
Tech Winter Break - GDG on Campus - PIET
Tech Winter Break - GDG on Campus - PIETTech Winter Break - GDG on Campus - PIET
Tech Winter Break - GDG on Campus - PIET
khushi15250705
 
Learn html and css from scratch
Learn html and css from scratchLearn html and css from scratch
Learn html and css from scratch
Mohd Manzoor Ahmed
 
wd project.pptx
wd project.pptxwd project.pptx
wd project.pptx
dsffsdf1
 
Punch it Up with HTML and CSS
Punch it Up with HTML and CSSPunch it Up with HTML and CSS
Punch it Up with HTML and CSS
mtlgirlgeeks
 
Girls Can Code East Brunswick Workshop Slides
Girls Can Code East Brunswick Workshop SlidesGirls Can Code East Brunswick Workshop Slides
Girls Can Code East Brunswick Workshop Slides
Kayla Leung
 
Thinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSSThinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSS
TJ Stalcup
 
slidesgo-mastering-html-and-css-a-comprehensive-guide-to-tags-and-elements-20...
slidesgo-mastering-html-and-css-a-comprehensive-guide-to-tags-and-elements-20...slidesgo-mastering-html-and-css-a-comprehensive-guide-to-tags-and-elements-20...
slidesgo-mastering-html-and-css-a-comprehensive-guide-to-tags-and-elements-20...
MrunmayiLohakare
 
HTML+CSS: how to get started
HTML+CSS: how to get startedHTML+CSS: how to get started
HTML+CSS: how to get started
Dimitris Tsironis
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
danpaquette
 
3 coding101 fewd_lesson3_your_first_website 20210105
3 coding101 fewd_lesson3_your_first_website 202101053 coding101 fewd_lesson3_your_first_website 20210105
3 coding101 fewd_lesson3_your_first_website 20210105
John Picasso
 
Introduction to HTML-CSS-Javascript.pdf
Introduction to HTML-CSS-Javascript.pdfIntroduction to HTML-CSS-Javascript.pdf
Introduction to HTML-CSS-Javascript.pdf
DakshPratapSingh1
 
Basics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointBasics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPoint
Sahil Gandhi
 
Web development using HTML and CSS
Web development using HTML and CSSWeb development using HTML and CSS
Web development using HTML and CSS
SiddhantSingh980217
 
Styling Your Web Pages with Cascading Style Sheets / EDU course / University ...
Styling Your Web Pages with Cascading Style Sheets / EDU course / University ...Styling Your Web Pages with Cascading Style Sheets / EDU course / University ...
Styling Your Web Pages with Cascading Style Sheets / EDU course / University ...
Patrick Lauke
 
GDG On Campus NBNSCOE Web Workshop Day 1 : HTML & CSS
GDG On Campus  NBNSCOE Web Workshop Day 1 : HTML & CSSGDG On Campus  NBNSCOE Web Workshop Day 1 : HTML & CSS
GDG On Campus NBNSCOE Web Workshop Day 1 : HTML & CSS
udaymore742
 
Tech Winter Break - GDG on Campus - PIET
Tech Winter Break - GDG on Campus - PIETTech Winter Break - GDG on Campus - PIET
Tech Winter Break - GDG on Campus - PIET
khushi15250705
 
Learn html and css from scratch
Learn html and css from scratchLearn html and css from scratch
Learn html and css from scratch
Mohd Manzoor Ahmed
 
Ad

Recently uploaded (20)

560b895e-c542-4b08-9507-d6e2612d562b.pptx
560b895e-c542-4b08-9507-d6e2612d562b.pptx560b895e-c542-4b08-9507-d6e2612d562b.pptx
560b895e-c542-4b08-9507-d6e2612d562b.pptx
Nirjhor191
 
Basic Paterns you can edit to add content
Basic Paterns you can edit to add contentBasic Paterns you can edit to add content
Basic Paterns you can edit to add content
ELAINETUMLOSPERALTA
 
case study.. or residence building design
case study.. or residence building designcase study.. or residence building design
case study.. or residence building design
jeremiojulu
 
TANNINS in tannins tannins tannins tannins
TANNINS in tannins tannins tannins tanninsTANNINS in tannins tannins tannins tannins
TANNINS in tannins tannins tannins tannins
Amrita512867
 
Villa de'Urgell X -.pdf A single family two-story residence to be built in tw...
Villa de'Urgell X -.pdf A single family two-story residence to be built in tw...Villa de'Urgell X -.pdf A single family two-story residence to be built in tw...
Villa de'Urgell X -.pdf A single family two-story residence to be built in tw...
Manny Vesa
 
Errors and error rates: workshop for X-Gov content clubpptx
Errors and error rates: workshop for X-Gov content clubpptxErrors and error rates: workshop for X-Gov content clubpptx
Errors and error rates: workshop for X-Gov content clubpptx
Caroline Jarrett
 
FW26-27 Fashion Key Items Trend Book Peclers Paris
FW26-27 Fashion Key Items Trend Book Peclers ParisFW26-27 Fashion Key Items Trend Book Peclers Paris
FW26-27 Fashion Key Items Trend Book Peclers Paris
Peclers Paris
 
The_Secret_Life_of_Mossahahahahahah.pptx
The_Secret_Life_of_Mossahahahahahah.pptxThe_Secret_Life_of_Mossahahahahahah.pptx
The_Secret_Life_of_Mossahahahahahah.pptx
sambal5
 
Adobe Dreamweaver CC 2025 v21.0.0.15392 with Crack [Latest]
Adobe Dreamweaver CC 2025 v21.0.0.15392 with Crack [Latest]Adobe Dreamweaver CC 2025 v21.0.0.15392 with Crack [Latest]
Adobe Dreamweaver CC 2025 v21.0.0.15392 with Crack [Latest]
Designer
 
IEEE_TechSangam_2025_23567_Template.pptx
IEEE_TechSangam_2025_23567_Template.pptxIEEE_TechSangam_2025_23567_Template.pptx
IEEE_TechSangam_2025_23567_Template.pptx
kevaleaditya1
 
Secret Disk Professional 2024.24 Crack With License Key [Latest]
Secret Disk Professional 2024.24 Crack With License Key [Latest]Secret Disk Professional 2024.24 Crack With License Key [Latest]
Secret Disk Professional 2024.24 Crack With License Key [Latest]
salma
 
ByteScout PDF Multitool 11.3.0.3984 with Serial Key [Latest]
ByteScout PDF Multitool 11.3.0.3984 with Serial Key [Latest]ByteScout PDF Multitool 11.3.0.3984 with Serial Key [Latest]
ByteScout PDF Multitool 11.3.0.3984 with Serial Key [Latest]
Designer
 
Low-Maintenance, High-Impact - Ash Joshi’s Approach to Effortless Landscaping
Low-Maintenance, High-Impact - Ash Joshi’s Approach to Effortless LandscapingLow-Maintenance, High-Impact - Ash Joshi’s Approach to Effortless Landscaping
Low-Maintenance, High-Impact - Ash Joshi’s Approach to Effortless Landscaping
Ash Joshi
 
Unlock Tool 2025.06 Crack Latest Version Free Download 2025
Unlock Tool 2025.06 Crack Latest Version Free Download 2025Unlock Tool 2025.06 Crack Latest Version Free Download 2025
Unlock Tool 2025.06 Crack Latest Version Free Download 2025
Designer
 
iphone activation platform - a case study
iphone activation platform - a case studyiphone activation platform - a case study
iphone activation platform - a case study
Jem Rayfield
 
🎰 LABUAN4D – SLOT GACOR, CUAN TIAP HARI! 🎰 🔥 BONUS NEW MEMBER 50% – Modal REC...
🎰 LABUAN4D – SLOT GACOR, CUAN TIAP HARI! 🎰 🔥 BONUS NEW MEMBER 50% – Modal REC...🎰 LABUAN4D – SLOT GACOR, CUAN TIAP HARI! 🎰 🔥 BONUS NEW MEMBER 50% – Modal REC...
🎰 LABUAN4D – SLOT GACOR, CUAN TIAP HARI! 🎰 🔥 BONUS NEW MEMBER 50% – Modal REC...
Labuan 4D
 
Dimensions of Presence in multiverse experiences_Luciana Jaalouk
Dimensions of Presence in multiverse experiences_Luciana JaaloukDimensions of Presence in multiverse experiences_Luciana Jaalouk
Dimensions of Presence in multiverse experiences_Luciana Jaalouk
LucianaJaalouk1
 
Crochet Pig Pattern Step-By-Step Tutorial
Crochet Pig Pattern Step-By-Step TutorialCrochet Pig Pattern Step-By-Step Tutorial
Crochet Pig Pattern Step-By-Step Tutorial
ytour882
 
Presentation3_architectural presentation case studypptx
Presentation3_architectural presentation case studypptxPresentation3_architectural presentation case studypptx
Presentation3_architectural presentation case studypptx
maheshwarigarvit2006
 
Total Uninstall Professional 7.0.0 with Crack Download [Latest]
Total Uninstall Professional 7.0.0 with Crack Download [Latest]Total Uninstall Professional 7.0.0 with Crack Download [Latest]
Total Uninstall Professional 7.0.0 with Crack Download [Latest]
Designer
 
560b895e-c542-4b08-9507-d6e2612d562b.pptx
560b895e-c542-4b08-9507-d6e2612d562b.pptx560b895e-c542-4b08-9507-d6e2612d562b.pptx
560b895e-c542-4b08-9507-d6e2612d562b.pptx
Nirjhor191
 
Basic Paterns you can edit to add content
Basic Paterns you can edit to add contentBasic Paterns you can edit to add content
Basic Paterns you can edit to add content
ELAINETUMLOSPERALTA
 
case study.. or residence building design
case study.. or residence building designcase study.. or residence building design
case study.. or residence building design
jeremiojulu
 
TANNINS in tannins tannins tannins tannins
TANNINS in tannins tannins tannins tanninsTANNINS in tannins tannins tannins tannins
TANNINS in tannins tannins tannins tannins
Amrita512867
 
Villa de'Urgell X -.pdf A single family two-story residence to be built in tw...
Villa de'Urgell X -.pdf A single family two-story residence to be built in tw...Villa de'Urgell X -.pdf A single family two-story residence to be built in tw...
Villa de'Urgell X -.pdf A single family two-story residence to be built in tw...
Manny Vesa
 
Errors and error rates: workshop for X-Gov content clubpptx
Errors and error rates: workshop for X-Gov content clubpptxErrors and error rates: workshop for X-Gov content clubpptx
Errors and error rates: workshop for X-Gov content clubpptx
Caroline Jarrett
 
FW26-27 Fashion Key Items Trend Book Peclers Paris
FW26-27 Fashion Key Items Trend Book Peclers ParisFW26-27 Fashion Key Items Trend Book Peclers Paris
FW26-27 Fashion Key Items Trend Book Peclers Paris
Peclers Paris
 
The_Secret_Life_of_Mossahahahahahah.pptx
The_Secret_Life_of_Mossahahahahahah.pptxThe_Secret_Life_of_Mossahahahahahah.pptx
The_Secret_Life_of_Mossahahahahahah.pptx
sambal5
 
Adobe Dreamweaver CC 2025 v21.0.0.15392 with Crack [Latest]
Adobe Dreamweaver CC 2025 v21.0.0.15392 with Crack [Latest]Adobe Dreamweaver CC 2025 v21.0.0.15392 with Crack [Latest]
Adobe Dreamweaver CC 2025 v21.0.0.15392 with Crack [Latest]
Designer
 
IEEE_TechSangam_2025_23567_Template.pptx
IEEE_TechSangam_2025_23567_Template.pptxIEEE_TechSangam_2025_23567_Template.pptx
IEEE_TechSangam_2025_23567_Template.pptx
kevaleaditya1
 
Secret Disk Professional 2024.24 Crack With License Key [Latest]
Secret Disk Professional 2024.24 Crack With License Key [Latest]Secret Disk Professional 2024.24 Crack With License Key [Latest]
Secret Disk Professional 2024.24 Crack With License Key [Latest]
salma
 
ByteScout PDF Multitool 11.3.0.3984 with Serial Key [Latest]
ByteScout PDF Multitool 11.3.0.3984 with Serial Key [Latest]ByteScout PDF Multitool 11.3.0.3984 with Serial Key [Latest]
ByteScout PDF Multitool 11.3.0.3984 with Serial Key [Latest]
Designer
 
Low-Maintenance, High-Impact - Ash Joshi’s Approach to Effortless Landscaping
Low-Maintenance, High-Impact - Ash Joshi’s Approach to Effortless LandscapingLow-Maintenance, High-Impact - Ash Joshi’s Approach to Effortless Landscaping
Low-Maintenance, High-Impact - Ash Joshi’s Approach to Effortless Landscaping
Ash Joshi
 
Unlock Tool 2025.06 Crack Latest Version Free Download 2025
Unlock Tool 2025.06 Crack Latest Version Free Download 2025Unlock Tool 2025.06 Crack Latest Version Free Download 2025
Unlock Tool 2025.06 Crack Latest Version Free Download 2025
Designer
 
iphone activation platform - a case study
iphone activation platform - a case studyiphone activation platform - a case study
iphone activation platform - a case study
Jem Rayfield
 
🎰 LABUAN4D – SLOT GACOR, CUAN TIAP HARI! 🎰 🔥 BONUS NEW MEMBER 50% – Modal REC...
🎰 LABUAN4D – SLOT GACOR, CUAN TIAP HARI! 🎰 🔥 BONUS NEW MEMBER 50% – Modal REC...🎰 LABUAN4D – SLOT GACOR, CUAN TIAP HARI! 🎰 🔥 BONUS NEW MEMBER 50% – Modal REC...
🎰 LABUAN4D – SLOT GACOR, CUAN TIAP HARI! 🎰 🔥 BONUS NEW MEMBER 50% – Modal REC...
Labuan 4D
 
Dimensions of Presence in multiverse experiences_Luciana Jaalouk
Dimensions of Presence in multiverse experiences_Luciana JaaloukDimensions of Presence in multiverse experiences_Luciana Jaalouk
Dimensions of Presence in multiverse experiences_Luciana Jaalouk
LucianaJaalouk1
 
Crochet Pig Pattern Step-By-Step Tutorial
Crochet Pig Pattern Step-By-Step TutorialCrochet Pig Pattern Step-By-Step Tutorial
Crochet Pig Pattern Step-By-Step Tutorial
ytour882
 
Presentation3_architectural presentation case studypptx
Presentation3_architectural presentation case studypptxPresentation3_architectural presentation case studypptx
Presentation3_architectural presentation case studypptx
maheshwarigarvit2006
 
Total Uninstall Professional 7.0.0 with Crack Download [Latest]
Total Uninstall Professional 7.0.0 with Crack Download [Latest]Total Uninstall Professional 7.0.0 with Crack Download [Latest]
Total Uninstall Professional 7.0.0 with Crack Download [Latest]
Designer
 
Ad

Intro to HTML & CSS