forked from snauman817/more-css-practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (57 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>More CSS Practice</title>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>More CSS Practice</h1>
<article>
<h2>Stevens College</h2>
<a href="stevens-college/example.png" target="_blank">
<img src="stevens-college/example.png" alt="Stevens College Layout"/>
</a>
<p>
<a href="stevens-college/index.html" target="_blank">My Recreation</a>
</p>
</article>
<article>
<h2>Instagram</h2>
<a href="instagram/example.png" target="_blank">
<img src="instagram/example.png" alt="Instagram Layout"/>
</a>
<p>
<a href="instagram/index.html" target="_blank">My Recreation</a>
</p>
</article>
<article>
<h2>Github</h2>
<a href="github/example.png" target="_blank">
<img src="github/example.png" alt="Github Layout"/>
</a>
<p>
<a href="github/index.html" target="_blank">My Recreation</a>
</p>
</article>
<article>
<h2>Airbnb</h2>
<a href="airbnb/example.png" target="_blank">
<img src="airbnb/example.png" alt="Airbnb Layout"/>
</a>
<p>
<a href="airbnb/index.html" target="_blank">My Recreation</a>
</p>
</article>
<article>
<h2>Amazon</h2>
<a href="amazon/example.png" target="_blank">
<img src="amazon/example.png" alt="Amazon Layout"/>
</a>
<p>
<a href="amazon/index.html" target="_blank">My Recreation</a>
</p>
</article>
</body>
</html>