This commit is contained in:
Micah Godbolt
2019-02-15 11:19:18 -08:00
parent 91e7993408
commit f9932aa48b
4 changed files with 309 additions and 229 deletions

29
step1-00/css-demo.html Normal file
View File

@@ -0,0 +1,29 @@
<html>
<head>
<link rel="stylesheet" href="./css-demo.css" />
</head>
<body>
<div>
<h1>This is my <span>Title</span></h1>
<div class="tiles">
<div>
<h2>Important Links</h2>
<a href="#">We're Awesome</a>
<a href="#">Learn More</a>
<a href="#">Hire Us</a>
</div>
<div>
<h2>Our Logo</h2>
<img src="./fabric.jpg" alt="fabric logo" />
</div>
<div>
<h2>Contact Us</h2>
<form id="contact-form">
<label>Email</label><input type="email" />
<input value="Submit" type="submit" />
</form>
</div>
</div>
</div>
</body>
</html>