-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadventure.html
More file actions
95 lines (86 loc) · 2.02 KB
/
adventure.html
File metadata and controls
95 lines (86 loc) · 2.02 KB
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
<html>
<head>
<title> SOLO-VR</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="java.js"></script>
<style>
body, html {height: 100%}
body,h1,h2,h3,h4,h5,h6,span,a {font-family: "Amatic SC", sans-serif}
.bg {
/* The image used */
background-image: url("adventure.jpg");
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
iframe {
display: block;
margin-left: auto;
margin-right: auto;
height: 450px;
width: 95%;
}
.footer {
position: float;
left: 0;
bottom: 0;
width: 100%;
background-color: #ccc;
text-align: center;
}
</style>
<style>
* {
box-sizing: border-box;
}
.column {
float: left;
width: 16.66%;
padding: 10px;
height: 600px;
}
.row:after {
content: "";
display: table;
clear: both;
}
.tab { margin-left: 40px; }
.monospace {
font-family: "Lucida Console", Courier, monospace;
font-size:110px;
color:white;
}
</style>
</head>
<body>
<div class="w3-top w3-hide-small">
<div class="w3-bar w3-xlarge w3-black w3-opacity w3-hover-opacity-off" id="myNavbar">
<a href="index.html" class="w3-bar-item w3-button" >Home</a>
<a href="aboutus.html"class="w3-bar-item w3-button">About us</a>
<a href="adventure.html"class="w3-bar-item w3-button">Start Living</a>
<a href="religion.html"class="w3-bar-item w3-button">Religious Services</a>
<a href="natural.html"class="w3-bar-item w3-button">Experience Nature</a>
</div>
</div>
<header
<div class="bg"></div>
</br>
</br>
</br>
</br>
</br>
</br>
<h1 class="monospace" ><center>Experience a </center></h1>
<h1 class="monospace"><center><b>Thrill ride </b></center></h1>
</header>
<footer class="footer">
<p style="color:red" style="font-size:16px"> Submission to 2020 Congressional App Challenge. By: Divyash Shah and Sahil Voona
CSS help provided by w3 schools
</footer>
</body>
</html>