My First Heading
My first paragraph.
Answers
Answer:
<!DOCTYPE html>
<html>
<body>
<h1>THE Heading</h1>
<p>My first paragraph... Kind of</p>
</body>
<h1>I'm so large! =D</h1>
<h2>I'm normal =)</h1>
<h3>I'm so tiny._.</h3>
<h4>FONT SIZES!</h4>
<a href="https://www.w3schools.com">This is a link. This is also where I got my coding. Click on the sentences!</a>
<img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">
<h1> This is a picture</h1>
</html>
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph. The elements are nested. </p>
</body>
</html>
<html>
<body>
<p>This is a paragraph</p>
<p>This is a paragraph. The code can sometimes work without the ending.</p>
</body>
</html>
</p> You want to remember to keep the tags lowercase.<br> It ins't required but hey... why not be neat? =D</p>
<!DOCTYPE html>
<html lang="en-US">
<body>
<h1>It's in english!</h1>
<p>I'm so sorry if you can't read it beacuse it's not your language.=3</p>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<h1>THE Heading</h1>
<p>My first paragraph... Kind of</p>
</body>
<h1>I'm so large! =D</h1>
<h2>I'm normal =)</h1>
<h3>I'm so tiny._.</h3>
<h4>FONT SIZES!</h4>
<a href="https://www.w3schools.com">This is a link. This is also where I got my coding. Click on the sentences!</a>
<img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">
<h1> This is a picture</h1>
</html>
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph. The elements are nested. </p>
</body>
</html>
<html>
<body>
<p>This is a paragraph</p>
<p>This is a paragraph. The code can sometimes work without the ending.</p>
</body>
</html>
</p> You want to remember to keep the tags lowercase.<br> It ins't required but hey... why not be neat? =D</p>
<!DOCTYPE html>
<html lang="en-US">
<body>
<h1>It's in english!</h1>
<p>I'm so sorry if you can't read it beacuse it's not your language.=3</p>
</body>
</html>
<p>This is<br>a para<br>graph with line breaks</p>
<p>This poem will display as one line:</p>
<p>
My Bonnie lies over the ocean.
My Bonnie lies over the sea.
My Bonnie lies over the ocean.
Oh, bring back my Bonnie to me.
</p>
<p>This will display as a poem:</p>
<pre>
My Bonnie lies over the ocean.
My Bonnie lies over the sea.
My Bonnie lies over the ocean.
Oh, bring back my Bonnie to me.
</pre>
<body style="background-color:lightblue">
<h1>I changed the background to blue!</h1>
<p>Yay!
</body>
<html>
<body>
<h1 style="color:blue">This is a heading</h1>
<p style="color:red">This is a paragraph.</p>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<h1 style="font-family:verdana">This is a heading</h1>
<p style="font-family:courier">This is a paragraph.</p>
</body>
</html>