-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (68 loc) · 3.69 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Image Gallery</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap" rel="stylesheet">
</head>
<body>
<h1 class = "body-text" style = "font-family: 'Dela Gothic One', cursive;">IMAGE GALLERY</h1>
<div class = "container">
<div class = "col">
<h2> GAMES </h2>
<div class = "quote">
<p>It is in games that many men discover their paradise.</p>
<button type = "button" onclick="location.href = 'games.html';"> More Images</button>
</div>
<img src="images/dark.png" style="width: 350px; height: 450px;">
</div>
<div class = "col">
<h2> MOVIES </h2>
<div class = "quote">
<p>Cinema is a matter of what’s in the frame and what’s out.</p>
<button type = "button" onclick="location.href = 'movies.html';"> More Images</button>
</div>
<img src="images/leo.png" style = "width: 300px; height: 500px;">
</div>
<div class = "col">
<h2> SHOWS </h2>
<div class = "quote">
<p>"I am the danger."</p>
<button type = "button" onclick="location.href = 'shows.html';"> More Images</button>
</div>
<img src="images/bb.png" style = "width: 280px; height: 400px;">
</div>
<div class = "col">
<h2> SPORTS </h2>
<div class = "quote">
<p>The five S’s of sports training are: stamina, speed, strength, skill, and spirit; but the greatest of these is spirit.</p>
<button type = "button" onclick="location.href = 'sports.html';"> More Images</button>
</div>
<img src="https://www.transparentpng.com/thumb/lionel-messi/KXOqGm-download-lionel-messi-png.png" alt="download lionel messi png @transparentpng.com" style = "width: 300px; height: 500px;">
</div>
<div class = "col">
<h2> ARTISTS </h2>
<div class = "quote">
<p>When we die, we will turn into songs, and we will hear each other and remember each other.</p>
<button type = "button" onclick="location.href = 'songs.html';"> More Images</button>
</div>
<img src="images/21p.png" style = "width: 300px; height: 400px;">
</div>
</div>
<script src="" async defer></script>
</body>
</html>