-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (54 loc) · 1.29 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Broken Code Example</title>
<link type="text/css" rel="stylesheet" href=" assignment2.css"/>
</head>
<body>
<div class="heading">
<br>
<h1>Broken Code Example</h1>
<br>
</div>
<p></p>
<div>Below is all the knowledge you will ever need.</div>
<p></p>
<div class="favorites">
<h3>Favorite Movies:</h3>
<ul>
<li>Fight Club</li>
<li>Tombstone</li>
<li>The Departed</li>
<li>No Country for Old Men</li>
</ul>
</div>
<div class="interests">
<h3>Other Interests</h3>
<ul>
<li>Writing code</li>
<li>Fixing broken web pages</li>
<li>All the things</li>
</ul>
</div>
<div class="programming">
<h3>Programming Languages I Like</h3>
<ul>
<li>CoffeeScript</li>
<li>Ruby</li>
<li>JavaScript</li>
<li>Python</li>
<li>Haskell</li>
</ul>
</div>
<div class="code">
<h3>How to Check in Code</h3>
<ol>
<li><b>$</b> <code>git add .</code></li>
<li><b>$</b> <code>git commit -m "my commit message"</code>
</ol>
</div>
<footer class="footer">
<span>© 2015 ACME </span>
</footer>
</body>
</html>