This repository has been archived by the owner on Dec 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
media.html
93 lines (83 loc) · 2.96 KB
/
media.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
<!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>Spellbuild - Media</title>
<link rel="icon" href="img/icon.png" type="image/png" sizes="16x16">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="header">
<div>
<a href="index.html"><span>SPELLBUILD</span></a>
</div>
</div>
<div class="navbar">
<ul>
<a href="index.html">
<li>Home</li>
</a>
<a href="media.html">
<li>Media</li>
</a>
<a href="about.html">
<li>About</li>
</a>
<a href="community.html">
<li>Community</li>
</a>
<a href="buy.html">
<li>Buy</li>
</a>
</ul>
</div>
<div class="media-content">
<div class="detail">
<div class="media-heading">
<h1>MEDIA</h1>
<h3>
Gameplay screenshots, official concepts, and fan art.
<br>Click an image to see its original resolution.
</h3>
</div>
<div class="media-heading-lower">
<h2>Gameplay Screenshots</h2>
</div>
<div class="img-container">
<div class="img">
<a href="img/media/7.jpg"><img src="img/media/7.jpg" alt="Gameplay 1"></a>
<span></span>
</div>
<div class="img">
<a href="img/media/8.jpg"><img src="img/media/8.jpg" alt="Gameplay 2"></a>
</div>
<div class="img">
<a href="img/media/9.jpg"><img src="img/media/9.jpg" alt="Gameplay 3"></a>
</div>
</div>
<div class="media-heading-inner">
<h2>Artwork</h2>
</div>
<div class="img-container">
<div class="img">
<a href="img/media/1.jpg"><img src="img/media/1.jpg" alt="Artwork 1"></a>
<a href="img/media/4.jpg"><img src="img/media/4.jpg" alt="Artwork 4"></a>
</div>
<div class="img">
<a href="img/media/2.jpg"><img src="img/media/2.jpg" alt="Artwork 2"></a>
<a href="img/media/5.jpg"><img src="img/media/5.jpg" alt="Artwork 5"></a>
</div>
<div class="img">
<a href="img/media/3.jpg"><img src="img/media/3.jpg" alt="Artwork 3"></a>
<a href="img/media/6.jpg"><img src="img/media/6.jpg" alt="Artwork 6"></a>
</div>
</div>
</div>
</div>
<div class="footer">
<span>Copyright © 2020 Spellbuild - All rights reserved</span>
</div>
</body>
</html>