-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (57 loc) · 1.46 KB
/
index.html
File metadata and controls
63 lines (57 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<title>My cool webpage</title>
<link rel="stylesheet" href="css/style.css">
<script defer src="js/app.js"></script>
<!-- <style>
div {
display: block;
}
</style> -->
</head>
<body>
<h1>A Header</h1>
<h2>A Header</h2>
<p style="color:blue">Some text</p>
<img src="http://placekitten.com/200/200" alt="kitten">
<div class="comments dolphin">
<div>These</div>
<div>Are</div>
<div>Divs</div>
</div>
<div>
<span id="example">These</span>
<span>Are</span>
<span>Spans</span>
</div>
<h3>A shopping list</h3>
<ul>
<li>Milk</li>
<li>Cereal</li>
<li>Eggs</li>
</ul>
<h3>The best foods: ranked</h3>
<ol>
<li>Milk</li>
<li>Cereal</li>
<li>Eggs</li>
</ol>
<h3>Food Descriptions</h3>
<table>
<tr>
<td>Chicken Nuggets</td>
<td>Breaded and Fried</td>
</tr>
<tr>
<td>Spaghetti</td>
<td>Noodly</td>
</tr>
<tr>
<td>Pizza</td>
<td>Tasty</td>
</tr>
</table>
<!-- <script src="js/app.js"></script> -->
</body>
</html>