generated from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
135 lines (114 loc) · 4.58 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html>
<head>
<title>Instagram Photo Feed</title>
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
</head>
<body>
<div id="header">
<h1>My favorite games</h1>
</div>
<div id="contentArea">
<div id="post1" class="contentBox">
<div class="boxHeader">
<h3>Red Dead Redemption 2</h3>
<h4>07/12/24</h4>
</div>
<div class="boxImg">
<img class="postImg"
src="https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/1174180/header.jpg?t=1720558643">
</div>
<div class="boxFooter">
<h5>Game information</h5>
<p>
<strong> Developer: </strong> Rockstar Games <br>
<strong> Release Date: </strong> oct-26-2018 <br>
<strong> Played time on Steam: </strong> 218.8 hrs <br>
<strong> Achievements on Steam: </strong> 51/51 (100%)
</p>
</div>
</div>
<div id="post2" class="contentBox">
<div class="boxHeader">
<h3>The Elder Scrolls: Skyrim</h3>
<h4>07/12/24</h4>
</div>
<div class="boxImg">
<img class="postImg"
src="https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/72850/header.jpg?t=1647357402">
</div>
<div class="boxFooter">
<h5>Game information</h5>
<p>
<strong> Developer: </strong> Bethesda Game Studios <br>
<strong> Release Date: </strong> nov-11-2011 <br>
<strong> Played time on Steam: </strong> 271.5 hrs <br>
<strong> Achievements on Steam: </strong> 75/75 (100%)
</p>
</div>
</div>
<div id="post3" class="contentBox">
<div class="boxHeader">
<h3>Metal Gear Solid V: The Phantom Pain</h3>
<h4>07/12/24</h4>
</div>
<div class="boxImg">
<img class="postImg"
src="https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/287700/header.jpg?t=1718868653">
</div>
<div class="boxFooter">
<h5>Game information</h5>
<p>
<strong> Developer: </strong> KONAMI <br>
<strong> Release Date: </strong> sep-01-2015 <br>
<strong> Played time on Steam: </strong> 321.4 hrs <br>
<strong> Achievements on Steam: </strong> 42/42 (100%)
</p>
</div>
</div>
<div id="post4" class="contentBox">
<div class="boxHeader">
<h3>Fallout 4</h3>
<h4>07/12/24</h4>
</div>
<div class="boxImg">
<img class="postImg"
src="https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/377160/header.jpg?t=1717972401">
</div>
<div class="boxFooter">
<h5>Game information</h5>
<p>
<strong> Developer: </strong> Bethesda Game Studios <br>
<strong> Release Date: </strong> nov-10-2015 <br>
<strong> Played time on Steam: </strong> 179.7 hrs <br>
<strong> Achievements on Steam: </strong> 41/84 (48%)
</p>
</div>
</div>
<div id="post5" class="contentBox">
<div class="boxHeader">
<h3>Death Stranding</h3>
<h4>07/12/24</h4>
</div>
<div class="boxImg">
<img class="postImg"
src="https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1190460/header.jpg?t=1707868363">
</div>
<div class="boxFooter">
<h5>Game information</h5>
<p>
<strong> Developer: </strong> KOJIMA PRODUCTIONS <br>
<strong> Release Date: </strong> nov-08-2019 <br>
<strong> Played time on Steam: </strong> 69.3 hrs <br>
<strong> Achievements on Steam: </strong> 42/63 (66%)
</p>
</div>
</div>
</div>
</body>
<footer>
</footer>
</html>