-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
124 lines (90 loc) · 4.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Museaum</title>
<link rel="shortcut icon" href="images/Sri_Lanka_Flag_Lion.png" type="image/x-icon">
<!-- Latest compiled and minified CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Latest compiled and minified CSS -->
<!--Meta tags-->
<meta name="description" content="National Hero of Sri Lanka. Philip Gunawardena(The Boralugoda Lion).">
<meta name="keywords" content="National Hero of Sri Lanka, Philip Gunawardena, The Boralugoda Lion">
<!--Meta tags-->
<style>
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quintessential&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lateef&display=swap');
#header{
background: #222 url("https://www.google.com/url?sa=i&url=https%3A%2F%2Fwallpaperaccess.com%2Fvintage-camera-photography&psig=AOvVaw2PKDefXQSuk0uW2OD0JSf1&ust=1671348843042000&source=images&cd=vfe&ved=0CBAQjRxqFwoTCJCMreKRgPwCFQAAAAAdAAAAABAE") center center no-repeat;
background-size: cover;
height: 940px;
width: auto;
}
#hdrtxt1{
padding-top: 200px;
font-family: 'Quintessential', cursive;
font-size: 35px;
color: white ;
border-color: black;
text-shadow: 2px 2px 5px black;
}
#hdrtxt{
font-family: 'Lateef', cursive;
font-size: 90px;
color: white ;
border-color: black;
text-shadow: 2px 2px 5px black;
}
#hdrtxt3{
font-family: 'Quintessential', cursive;
font-size: 30px;
color: white ;
border-color: black;
text-shadow: 2px 2px 5px black;
}
#btns{
background-color: aliceblue;
width: 150px;
border-radius: 30px;
background-color: black;
color: lavender;
border-color: lavender;
}
</style>
</head>
<body id="header">
<div class="container-fluid" id="header">
<div class="h2 text-center " id="hdrtxt1">
</div>
<div class="h1 text-center " id="hdrtxt">
Image Museaum
</div>
<div class="h2 text-center " id="hdrtxt3">
</div>
<div class="row justify-content-center">
<div class="col-sm-4 form" onclick="location.href='gallary.html'" style="width: 200px;">
<button class="btn" id="btns" >Gallary</button>
</div>
<div class="col-sm-4 form" onclick="location.href='timeline.html'" style="width: 200px;">
<button class="btn" id="btns">TimeLine</button>
</div>
<div class="col-sm-4 form" onclick="location.href='map.html'" style="width: 200px;">
<button class="btn" id="btns">World Map</button>
</div>
</div>
</div>
<!--foooter-->
<div class="footer container-fluid bg-dark mt-auto" style="color: lavender;">
<!-- Copyright -->
<!-- Copyright -->
<div class="p text-center" style="text-decoration: none;">
Powered by <a href="https://www.lwatechnologies.com/" class="text-reset fw-bold">LWA Technologies</a>
</div>
<!--footer-->
</body>
<!-- Latest compiled JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
</html>