-
Notifications
You must be signed in to change notification settings - Fork 328
/
Copy pathhome.html
148 lines (132 loc) · 3.47 KB
/
home.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bigfoot's Cave</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<style>
* {
box-sizing: border-box;
}
body {
font-family: 'Press Start 2P';
margin: 0;
}
/* Style the header */
.header {
padding: 80px;
text-align: Right;
background-image: url('https://raw.githubusercontent.com/Bigfoot9999/website/main/images/cartoon-mountains-and-forest-landscape-background-vector-17614475.jpg');
text-color: black;
}
/* Increase the font size of the h1 element */
.header h1 {
font-size: 40px;
}
/* Style the top navigation bar */
.navbar {
overflow: hidden;
background-color: #333;
}
/* Style the navigation bar links */
.navbar a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
/* Right-aligned link */
.navbar a.right {
float: right;
}
/* Change color on hover */
.navbar a:hover {
background-color: #ddd;
color: black;
}
/* Column container */
.row {
display: flex;
flex-wrap: wrap;
}
/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
flex: 30%;
background-color: #f1f1f1;
padding: 20px;
}
/* Main column */
.main {
flex: 70%;
background-color: white;
padding: 20px;
}
/* Fake image, just for this example */
.fakeimg {
background-color: #aaa;
width: 100%;
padding: 20px;
}
</style>
</head>
<body>
<div class="header">
<h1>Welcome To Bigfoots Cave!</h1>
<p>A website dedicated to bigfoot9999</p>
</div>
<div class="navbar">
<a href="Home">Home</a>
<a href="Games/CuttheRope">Games</a>
<a href="Other">Other</a>
<a href="#" class="right">Link</a>
</div>
<div class="row">
<div class="side">
<h2>About Me</h2>
<p>I am bigfoot9999</p>
<h3></h3>
<p></p>
</div>
<div class="main">
<style>
@keyframes scaler {
0% {
transform: scale(1);
}
100% { transform: scale(1.5);
}
}
.btnAnim416 {
animation: scaler 1s linear 0s infinite alternate none running;
}
.btnAnim416:hover{
animation-play-state: paused;
}
</style>
<div style="margin: 0 auto;text-align:center;overflow:hidden;border-radius:0px;background:#ff0000;border:0px solid #000000;padding:0px;max-width:calc(100% - 0px);width:291px">
<div style="display: inline-block;position:relative;vertical-align: middle;padding:0px">
<img src="https://raw.githubusercontent.com/Bigfoot9999/website/main/images/0009.gif"/>
</div>
<div style="display:inline-block;text-shadow:#030303 4px 4px 4px;position:relative;vertical-align: middle;padding:8px;font-size:45px;color:#ffffff;font-weight:normal">Bigfootshack</div>
<div style="display:inline-block;text-shadow:#030303 4px 4px 4px;position:relative;vertical-align: middle;padding:8px;font-size:14px;color:#ffffff;font-weight:normal">Unblocked games!</div>
<div class="btnAnim416" style="display:inline-block;position:relative;vertical-align: middle;padding:8px" >
<a target="_blank" href="https://www.bigfootshack.ga"><input type="button" value="Visit Now" style="margin:0px;background:#000000;padding:8px;border:3px solid red;color:#ffffff;border-radius:0px;cursor:pointer" /></a></div>
</div></div>
</div>
</body>
<!--Footer-->
<div class="footer">
<h2>Footer</h2>
</div>
<style>
.footer {
padding: 20px; /* Some padding */
text-align: center; /* Center text*/
background: #ddd; /* Grey background */
}
</style>
</html>