forked from Montana-Code-School/Simple-HTML-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (82 loc) · 3.38 KB
/
index.html
File metadata and controls
89 lines (82 loc) · 3.38 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF"-8>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<title>john.lee website</title>
</head>
<body>
<center>
<h1>Hello <strike>World</strike> Fellow Coders</h1>
<h2>John Lee here...</h2>
<p></p>
<hr>
<h3> Never a dull moment at our house. I'm definitely outnumbered,
but life is a party! </h3>
<img class="fam-img-border" src="/Users/john-lee/Code/Projects/Simple-HTML-Site/img/LeeFamily.gif">
<hr>
<h2> Favorite Podcasts </h2>
<h3> App of Choice: STITCHER </h3>
<ul> <h4>Listening Stats</h4> </ul>
<li> Total Hours: 773 </li>
<li> Total Episodes: 5,515 </li>
<div class"th">
<table style="width:100%">
<tr>
<th align="right"><img src="/Users/john-lee/Code/Projects/Simple-HTML-Site/img/tedradiohour.jpg"></th>
<th align="left">TED Radio Hour</th>
</tr>
<tr>
<th align="right"><img src="/Users/john-lee/Code/Projects/Simple-HTML-Site/img/thisamericanlife.jpg"></th>
<th align="left">This American Life</th>
</tr>
<tr>
<th align="right"><img src="/Users/john-lee/Code/Projects/Simple-HTML-Site/img/radiolab.png"></th>
<th align="left">Radiolab</th>
</tr>
<tr>
<th align="right"><img src="/Users/john-lee/Code/Projects/Simple-HTML-Site/img/youarenotsosmart.jpg"></th>
<th align="left">You Are Not So Smart</th>
</tr>
<tr>
<th align="right"><img src="/Users/john-lee/Code/Projects/Simple-HTML-Site/img/freakonomics.jpg"></th>
<th align="left">Freakonomics</th>
</tr>
<tr>
<th align="right"><img src="/Users/john-lee/Code/Projects/Simple-HTML-Site/img/secular-buddhism.jpg"></th>
<th align="left">Secular Buddhism</th>
</tr>
</table>
</div>
<h3>Have you listened to any of these podcasts before?</h3>
<form>
<div class="label" class="input">
<label><input type="checkbox" name="podcasts"> TED Radio Hour</label>
</div>
<label><input type="checkbox" name="podcasts"> This American Life</label>
<label><input type="checkbox" name="podcasts"> Radiolab</label>
<label><input type="checkbox" name="podcasts"> You Are Not So Smart</label>
<label><input type="checkbox" name="podcasts"> Freakonomics</label>
<label><input type="checkbox" name="podcasts"> Secular Buddhism</label>
<button type="submit">Submit</button>
</form>
<h3>What is your favorite podcast that I should try out?</h3>
<input type="text" placeholder="recommendation">
<button type="submit">Submit</button>
<hr>
<h2> Favorite Quotes </h2>
<ul align="left">
<li> Mark Twain may have said it best: "It is many times easier to fool
a person than to convince them that they have been fooled."</li>
<li> Faith is simply the attitude of being open to whatever may be,
and not attaching to an idea or belief of how we want or expect things to be.</li>
<li> Given the choice, people will choose confirmation over information. </li>
<li> No matter what you believe, you might be wrong. </li>
</ul>
<hr>
<h2> Fun fact about myself </h2>
<p> I share the same birthday as Google </p>
<img src="/Users/john-lee/Code/Projects/Simple-HTML-Site/img/googlebirthday.gif">
</center>
</body>
</html>