-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (68 loc) · 2.39 KB
/
index.html
File metadata and controls
73 lines (68 loc) · 2.39 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>DOM Playground</title>
<link rel="stylesheet" href="style.css" media="screen" title="no title">
<script src="script.js" charset="utf-8"></script>
</head>
<body>
<header>
<h1 id="main-title">Hi! My name is DOM Toretto. Welcome to my homepage.</h1>
</header>
<div class="side-bar">
<h4>Dom's Favorite Things</h4>
<ul id="favorite-things">
<li>Fast cars</li>
<li>Muscles</li>
<li>Sleeveless t-shirts</li>
<li>Revving my engine</li>
<li>Living my life a quarter mile at a time</li>
<li>Staring people down</li>
</ul>
<h4>My Best Friends</h4>
<img class="family-photo" alt="photo" src="http://i.giphy.com/S8T3No3DMwEXS.gif">
<img class="family-photo" alt="photo" src="http://i.giphy.com/N91f9QjC32eI.gif">
<img class="family-photo" alt="photo" src="http://i.giphy.com/Ngn9gNdeHT3oI.gif">
<img class="family-photo" alt="photo" src="http://i.giphy.com/415QwSjh4i9LG.gif">
<img class="family-photo" alt="photo" src="http://i.giphy.com/46VBGqTsyzYfC.gif">
</div>
<div class="main">
<div id="quote-title" class="special-title">Quote of the Day</div>
<p id="quote-of-the-day"></p>
<img src="http://i.giphy.com/aG15SLmsjxiNO.gif" alt="" />
<div id="dom-adventures" class="special-title">DOM's Adventures</div>
<div class="blog-post purple">
<h1>Dubai</h1>
<p>OMG I JUMPED MY CAR ACROSS TWO SKYSKRAPERS!</p>
</div>
<div class="blog-post purple">
<h1>London</h1>
<p>I DROVE MY CAR THROUGH AN AIRPLANE!</p>
</div>
<div class="blog-post purple">
<h1>Brazil</h1>
<p>I STOLE A GIANT BANK VAULT WITH MY CAR!</p>
</div>
<div class="blog-post purple">
<h1>Tokyo</h1>
<p>I DRIFTED MY CAR AROUND A PARKING GARAGE!</p>
</div>
<div class="blog-post purple">
<h1>Los Angeles</h1>
<p>I RACED PAUL WALKER AND WON HIS CAR WITH MY CAR!</p>
</div>
</div>
<div class="side-bar">
<h4>Past Races</h4>
<ul id="past-races">
<li>Los Angeles</li>
<li>Tokyo</li>
<li>Brazil</li>
<li>Chicago</li>
<li>London</li>
<li>Dubai</li>
</ul>
</div>
</body>
</html>