-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout_me.html
94 lines (86 loc) · 3.97 KB
/
about_me.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<style>
.food-image {
float: right;
margin: 10px;
}
</style>
</head>
<body>
<h1>Derrick Chaney</h1>
<p>I am an avid hiker, surfer, musican, and hockey player. Our family takes regular trips to national parks along the west coast every summer.</p>
<p>If I'm not at the rink with my boys, I'm in the lab at Qualcomm, where I work as a Test Engineer on advanced RF Projects(#G).</p>
<h2>My Pets</h2>
<ul>
<li>A dog named Barklee </li>
<img src="IMG_5278.jpg" alt="DOG" width="200">
<li>A cat named Tyrone </li>
<img src="IMG_1892.JPG" alt="CAT" width="200">
<li>A cat named Mochi </li>
<img src="IMG_5398.JPG" alt="CAT" width="200">
<!-- picture of dog here. -->
</ul>
<h2>Favorite Restaurant</h2>
<p>My favorite restaurant is <a href="https://www.cowboystarsd.com/" target="_blank">Cowboy Star</a>. If its my birthday or a special occasion this is the place. It's not cheap but I have never been disapointed. </p>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Favorite Food</title>
</head>
<body>
<h2>Favorite Food</h2>
<p>Depending on my mood, I'm either going for Indian Food, or Thai food, and of course I absolutely love pizza, especially when it's served with a perfectly crisp crust and an ice colde beer.</p>
<table>
<tr>
<td>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/53/Indian_food_at_restaurant_in_Paris_-_2020-08-20.jpg/1280px-Indian_food_at_restaurant_in_Paris_-_2020-08-20.jpg" alt="Indian Food" align="right" height="=300" width="360">
</td>
<td>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Phat_thai_-_Bangkok_-_2017-06-16_%28002%29.jpg/800px-Phat_thai_-_Bangkok_-_2017-06-16_%28002%29.jpg" alt="Thai Food" width="200">
</td>
<td>
<img src="https://images.squarespace-cdn.com/content/v1/5a5d729229f1874244da75ed/1708532168698-YTS2Q6G6XBXINYWSIX3J/IMG_4528.jpeg?format=2500w" alt="Pizza" width="200">
</td>
</tr>
</table>
</body>
<h2>Favorite Books</h2>
<table border="1">
<tr>
<th>Book Name</th>
<th>Cover Image</th>
<th>Author</th>
<th>Summary</th>
</tr>
<tr>
<td>Cats Cradle</td>
<td><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Cat%27s_Cradle_%281st_ed._cover%29_-_Vonnegut.jpg/220px-Cat%27s_Cradle_%281st_ed._cover%29_-_Vonnegut.jpg" alt="The Hobbit Cover" width="50"></td>
<td>Kurt Vonnegut</td>
<td>An apocalyptic tale of this planet’s ultimate fate.</td>
</tr>
<tr>
<td>1984</td>
<td><img src="https://upload.wikimedia.org/wikipedia/commons/0/04/Nineteen_Eighty-Four_cover_Soviet_1984.jpg" alt="1984 Cover" width="50"></td>
<td>George Orwell</td>
<td>A dystopian novel about a totalitarian regime that controls every aspect of life.</td>
</tr>
<tr>
<td>The Odyssey</td>
<td><img src="https://m.media-amazon.com/images/I/71rp7o5oTnL._SL1164_.jpg" alt="To Kill a Mockingbird Cover" width="50"></td>
<td>Homer </td>
<td>Epic tales of ancient heroes and legendary battles.</td>
</tr>
<tr>
<td>Hitch Hikers Guide to the Galaxy</td>
<td><img src="https://m.media-amazon.com/images/I/71sws1STTbL._SL1360_.jpg" alt="Harry Potter Cover" width="50"></td>
<td>John Carnell </td>
<td>A Paranoid Android on the ultimate adventure of several lifetimes. </td>
</tr>
</table>
</body>
</html>