-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
81 lines (70 loc) · 3.25 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<title>Code Academy Students</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Power Code Academy Students</h1>
<div class="developer">
<h2>Aaron Wilson</h2>
<img src="img/AaronWilson.jpg" alt="Aaron" style="width: 100px; height: 100px;">
<p class="favorite-website">Favorite website:<a href="https://wikipedia.org" target="_blank" title="Find out things">Wikipedia</a></p>
</div>
<div class="developer">
<h2>Andrew Kloecker</h2>
<img src="img/andrew-kloecker.jpg" alt="Andrew" style="width: 100px; height: 100px;" alt="Andrew">
<p class="favorite-website">Favorite website:<a href="https://nitro.powerhrg.com/connect" target="_blank" title="This is the best one tbh">Connect</a></p>
</div>
<div class="developer">
<h2>Idan Zonshein</h2>
<img src="img/idan-zonshein.jpg" alt="Idan" style="width: 100px; height: 100px;">
<p class="favorite-website">Favorite website:<a href="https://github.com" target="_blank" title="git push origin master">Github</a></p>
</div>
<div class="developer">
<h2>Josephine Fischer</h2>
<img src="img/josephine-fischer.jpg" alt="Jo" style="width: 100px; height: 100px;">
<p class="favorite-website">Favorite website:<a href="https://netflix.com" target="_blank" title="The new TV">Netflix</a></p>
</div>
<div class="developer">
<h2>Liam Tinney</h2>
<img src="img/liam-tinney.jpg" alt="Liam" style="width: 100px; height: 100px;">
<p class="favorite-website">Favorite website:<a href="https://old.reddit.com" target="_blank" title="It's reddit but old">Reddit</a></p>
</div>
<div class="developer">
<h2>Maddie McCardle</h2>
<img src="img/maddie-mccardle.jpg" alt="Maddie" style="width: 100px; height: 100px;">
<p class="favorite-website">Favorite website:<a href="https://youtube.com" target="_blank" title="Also the new TV">Youtube</a></p>
</div>
<div class="developer">
<h2>Pat McClernan</h2>
<img src="img/pat-mcclernan.jpg" alt="Pat" style="width: 100px; height: 100px;">
<p class="favorite-website">Favorite website:<a href="https://xkcd.com" target="_blank" title="Jokes for STEM majors">XKCD</a></p>
</div>
<div class="developer">
<h2>Stephen McKeon</h2>
<img src="img/stephen-mckeon.jpg" alt="Stove" style="width: 100px; height: 100px;">
<p class="favorite-website">Favorite website:<a href="https://reddit.com" target="_blank" title="Reddit but like with updated UX">Reddit</a></p>
</div>
</div>
<div class="favorite-food">
<h2>Pat's Favorite Foods</h2>
<ol>
<li>Bibimbap</li>
<li>Crab</li>
<li>Sushi</li>
</ol>
</div>
<div class="favorite-food">
<h2>Andrew's Favorite Foods</h2>
<ol>
<li>Rice</li>
<li>Pineapple</li>
<li>Chicken</li>
</ol>
</div>
<div class="favorite-food">
<a class="" href="https://onceuponafoodblog.com/bibimbap/"><img class="center" src="https://www.recipetineats.com/wp-content/uploads/2019/05/Bibimbap_3.jpg"></a>
</div>
</body>
</html>