-
Notifications
You must be signed in to change notification settings - Fork 1
/
gallery.html
102 lines (86 loc) · 3.17 KB
/
gallery.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
<!DOCTYPE HTML>
<html>
<head>
<title>GALLERY</title>
<link rel="stylesheet" type="text/css" href="VC.css">
</head>
<body>
<nav>
<ul>
<li><a href="index.html" target="_blank">Home</a></li>
<li><a href="kingdom.html" target="_blank">Kingdom</a></li>
<li><a href="cards.html" target="_blank">Cards</a></li>
<li class="active"><a href="gallery.html" target="_blank">Gallery</a></li>
<li><a href="friends.html" target="_blank">Comrades</a></li>
</ul>
</nav>
<header class="gallery">
<img src="images/loading.jpeg" alt="loading" width="100%">
<h2 class="speaks">Look out for Frequent Events and Updates!</h2>
</header>
<div class="Grow">
<div class="Gcolumn">
<img src="images/gal1.png" style="width:100%">
<img src="images/gal2.png" style="width:100%">
<img src="images/gal3.png" style="width:100%">
<img src="images/gal4.png" style="width:100%">
<img src="images/gal5" style="width:100%">
<img src="images/gal6.png" style="width:100%">
</div>
<div class="Gcolumn">
<img src="images/gal7.png" style="width:100%">
<img src="images/gal8.png" style="width:100%">
<img src="images/gal9.jpeg" style="width:100%">
<img src="images/gal9.png" style="width:100%">
<img src="images/gal10.jpeg" style="width:100%">
<img src="images/gal11.png" style="width:100%">
</div>
<div class="Gcolumn">
<img src="images/gal12.png" style="width:100%">
<img src="images/gal13.png" style="width:100%">
<img src="images/gal14.png" style="width:100%">
<img src="images/gal15.jpeg" style="width:100%">
<img src="images/gal16.jpeg" style="width:100%">
<img src="images/gal17.jpeg" style="width:100%">
</div>
</div>
</body>
<!--footer-->
<footer>
<!--table-->
<table align="center" border="1">
<tr>
<td rowspan="2"><h3>Find out more about Valkyrie Crusade here</h3></td>
<td><a href="https://www.facebook.com/valkyriecrusadenubee/" target="_blank">
<img src="images/facebook.jpg" width="40vw" height="auto" style="border-radius: 50%" class="more" alt="facebook">
</a></td>
</tr>
<tr>
<td> <a href="https://valkyriecrusade.fandom.com/wiki/Valkyrie_Crusade_Wiki" target="_blank">
<img src="images/fandom.png" width="40vw" height="auto" style="border-radius: 50%" class="more" alt="fandom">
</a></td>
</tr>
<tr>
<td rowspan="2"><h3>Play Valkyrie Crusade now!</h3></td>
<td><a href="https://play.google.com/store/apps/details?id=com.nubee.valkyriecrusade&hl=en" target="_blank">
<img src="images/googleplay.png" class="download" alt="google play">
</a></td>
</tr>
<tr>
<td> <a href="https://apps.apple.com/us/app/valkyrie-crusade/id586114395" target="_blank">
<img src="images/appstore.png" class="download" alt="app store">
</a> </td>
</tr>
</table>
<!--form-->
<form>
<p>Type in your username!</p>
<input type="text">
<br>
<input type="radio" name="gender" value="male"> male <br>
<input type="radio" name="gender" value="female"> female <br>
<input type="radio" name="gender" value="other"> other <br>
<input type="submit" value="submit">
</form>
</footer>
</html>