A Pen by Daniel Oostra on CodePen.
Created
August 19, 2020 18:56
-
-
Save helderdarocha/350dda54b66f45787430081697f26b09 to your computer and use it in GitHub Desktop.
Indentation Practice
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Please clean up this messy html, after you indent, notice how the text doesn't move--> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title> | |
Basic I | |
</title> | |
</head> | |
<body> | |
<h1> | |
What language do you love? | |
</h1> | |
<p> | |
I love HTML! | |
</p> | |
</body> | |
</html> | |
<!--Part Two below --> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title> | |
Basic II | |
</title> | |
</head> | |
<body> | |
<table> | |
<thead> | |
<tr><th>First Name</th><th>Last Name</th><th>Email</th><th>Password</th></tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td> | |
Brendan | |
</td> | |
<td> | |
Stanton | |
</td> | |
<td> | |
[email protected] | |
</td><td> FakePassword123 </td></tr> | |
</tbody> | |
</table> | |
<h1>Here is a list of my favorite things:</h1> | |
<ul><li>Food</li> | |
<li>Bandwidth</li> | |
<li>Coffee</li> | |
<li>Beach | |
</li> | |
</ul> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment