Halah Al-Shaikhly
it is the structure of your web page.
it is a text with links in it
it is a programming language that makes text more than just text. It can turn in it to images, tables and links ... etc
HTML elements : headers, paragraphs, links, images, tables ..
Html tags <> things between <> are called tags
Tags have opening tag & closing tag but not alalways
<p></p>
<!DOCTYPE html>
<!DOCTYPE html>
<html>
</html>
<html>
</html>
<head>
</head>
<!DOCTYPE html>
<html>
<head>
<title>About me<title>
</head>
<body>
</body>
</html>
<body>
</body>
<!DOCTYPE html>
<html>
<head>
<title>About me<title>
</head>
<body>
<p> Hello World! </p>
</body>
</html>
<body>
<h1> I'm h1 </h1>
<h2> I'm h2 </h2>
<h3> I'm h3 </h3>
<h4> I'm h4 </h4>
<h5> I'm h5 </h5>
<h6> I'm h6 </h6>
</body>
congrats you can have 6 heading sizes
<a href="[link to something]"> [Link title] </a>
<img src="[link to image]"/>
<h1>Favourite TV Shows</h1>
<ul> Favourite TV Shows
<li>Game Of Thrones</li>
<li>Suits</li>
<li>Person Of Interest</li>
</ul>
<h1>Favourite TV Shows</h1>
<ol>
<li>Game Of Thrones</li>
<li>Suits</li>
<li>Person Of Interest</li>
</ol>
About Me Page
<div></div><h1 style="color: red"> Hello World! </h1>
<p style="color: green; font-size:10px">I'm green and small.</p><h1 style="background-color: red"> Hello World! </h1>
<h1 style="text-align: center"> Hello World! </h1>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style media="screen">
h1{
color: red;
}
</style>
</head>
<body>
<h1>Random</h1>
</body>
</html><!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Random</h1>
</body>
</html>
h1{
color: red;
background-color: green;
text-align: center;
}// index.html html body
<body>
<h1 class="aboutMeTitle">Random</h1>
<h1>Blah blah</h1>
</body>// style.css
.aboutMeTitle{
color: green
}// index.html html body
<body>
<p id="someParagraph">
October arrived, spreading a damp chill over the grounds and into the castle.
</p>
</body>// style.css
#someParagraph{
text-align: center;
color: rgb(150, 100, 150);
}multiple classes and ids
@twiter: halinaSalih
@email:halah.alshaikhly@gmail.com
@github:halahRaadSalih