forked from bloominstituteoftechnology/Precourse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomework.html
More file actions
73 lines (63 loc) · 1.93 KB
/
homework.html
File metadata and controls
73 lines (63 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<html>
<head>
<title>ByteSizeMagic's HTML Homework</title>
<!--
<style>
body {
background-color: gainsboro;
}
#thirdDiv {
height: 600px;
width: 500px;
background-color: whitesmoke;
padding: 50px;
margin-top: 15px;
border: 2px solid black;
border-radius: 5px;
}
.divClass {
}
#spanId {
font-size: 18px;
margin: 50px;
}
h1 {
color: firebrick;
}
ul {
list-style-type: none;
margin-top: 1em;
}
li {
margin-bottom: 5px;
}
img {
width: 400px;
border-radius: 5px;
}
div {
text-align:center;
margin:auto;
}
</style>
-->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="divClass">
<h1>ByteSizeMagic</h1>
<h3>Lambda School</h3>
<h4>HTML/CSS homework</h4>
</div>
<div class="divClass">
<span id="spanId">Chili Thai has authentic Thai cuisine.</span>
<a href="http://chilithai.com">Chili Thai</a>
</div>
<div id="thirdDiv">
<ul>
<li><a href="https://www.chilithai.com/full-menu"><img src="https://static1.squarespace.com/static/563a86fde4b097ff29a834d3/564aed62e4b0fa7d0bc368b5/564af80ce4b01ebc22adfbdb/1447807543444/%237+Chicken+Stay.JPG?format=1000w" alt="Chicken Satay"></a></li>
<li><a href="https://www.chilithai.com/full-menu"><img src="https://static1.squarespace.com/static/563a86fde4b097ff29a834d3/564aed62e4b0fa7d0bc368b5/564af887e4b01ebc22adfe4a/1447807544386/%2340_GoongGarlic.JPG?format=1000w" alt="Goong Garlic"></a></li>
</ul>
</div>
</body>
</html>