-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (59 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Test 1 - WEB1010</title>
<link rel="stylesheet" href="./main.css">
</head>
<body>
<h1>This Is The First Test</h1>
<h2>The Topics We Learned:</h2>
<ul class="topics">
<li>HTML</li>
<li>CSS</li>
<li>Git</li>
<li>Atom Editor</li>
<li>Chrome Developer Tools</li>
<li>Command Line Tools</li>
</ul>
<h2>Colleges</h2>
<ul class="colleges">
<li>UMiami</li>
<li>FIU</li>
<li>MDC</li>
<li>UF</li>
<li>FSU</li>
<li>FAU</li>
<li>UCF</li>
<li>USF</li>
</ul>
<img src="./img/code.jpg" alt="just code">
<div>
<figure>
<img src="./img/pizza.jpg" alt="Deilicous Pizza">
<figcaption>Pizza</figcaption>
</figure>
<figure>
<img src="./img/croquetas.jpg" alt="Delectable Croquetas">
<figcaption>Croquetas</figcaption>
</figure>
<figure>
<img src="./img/sushi.jpg" alt="Scrumptious Sushi">
<figcaption>Sushi</figcaption>
</figure>
<figure>
<img src="./img/coffee.jpg" alt="Coffee">
<figcaption>Coffee</figcaption>
</figure>
<figure>
<img src="https://i.pinimg.com/originals/69/a5/37/69a53747b61cdc2b560dd0b40a04c09f.jpg" alt="Coffee">
<figcaption>Squid</figcaption>
</figure>
</div>
<footer>
<p>© 2016. This webpage created for WEB1010 at Techlaunch.</p>
</footer>
</body>
</html>