-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
134 lines (132 loc) · 3.01 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Fots</title>
<link rel='icon' href='https://drive.google.com/thumbnail?id=1_uXBFbx-2fDh-ToXiNJtapD21qamOd71' type='image/png'/>
<style>
#nav {
position: fixed;
top: 0px;
left: 0px;
width: 90px;
height: 75px;
background: #dc1b1b;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
border-radius: 0px 0px 7px 0px;
}
.top {
height: 65px;
font-size: 25px;
color: white;
border: none;
background: transparent;
border-radius: 7px;
cursor: pointer;
}
#title {
position: absolute;
top: 5px;
left: 5px;
width: 80px;
font-weight: bold;
}
#products {
position: absolute;
top: 5px;
left: 100px;
width: 120px;
color: black;
}
#about {
position: absolute;
top: 5px;
left: 230px;
width: 120px;
color: black;
}
#food {
position: absolute;
top: 5px;
left: 360px;
width: 120px;
color: black;
}
#signIn {
position: fixed;
top: 0px;
right: 0px;
height: 75px;
background: #dc1b1b;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
font-size: 20px;
color: white;
border: none;
cursor: pointer;
border-radius: 0px 0px 0px 7px;
font-weight: bold;
}
#text {
position: absolute;
top: 120px;
left: 0px;
width: 90%;
margin-left: 5%;
margin-right: 5%;
color: #dc1b1b;
font-family: futura;
font-size: 25px;
text-align: justify;
}
</style>
</head>
<body>
<div id="nav">
<a href="https://lb123658.github.io/Fots/home?user=Login">
<button class="top" id="title">Fots</button></a>
<button class="top" id="products" onmouseover="a()" onmouseout="b()">Products</button>
<button class="top" id="about" onmouseover="c()" onmouseout="d()">About</button>
<button class="top" id="food" onmouseover="e()" onmouseout="f()">Food</button>
</div>
<a href="sign-in.html">
<button id="signIn">Sign in</button></a>
<p id="text">FOOD + SHOTS = FOTS<br><br>Welcome to the official Fots website. Now you will never spend another day fotless because there is a wide selection of Fot recipes, merchandise, and more. New merch includes Fot stickers, mugs, shirts, and Fot glasses to drink all your favorite Fots. Check out the Rispe Fot, olive Fot, and crunchy Fot under recipes. Just look up "Fots Official" on YouTube to find our official channel.<br>
#ZilchingItToAFot</p>
<script>
var nav = document.getElementById("nav");
var pro = document.getElementById("products");
var abo = document.getElementById("about");
var foo = document.getElementById("food");
function a() {
nav.style.width = "225px";
pro.style.color = "white";
}
function b() {
nav.style.width = "90px";
pro.style.color = "black";
}
function c() {
nav.style.width = "355px";
abo.style.color = "white";
pro.style.color = "white";
}
function d() {
nav.style.width = "90px";
abo.style.color = "black";
pro.style.color = "black";
}
function e() {
nav.style.width = "485px";
abo.style.color = "white";
pro.style.color = "white";
foo.style.color = "white";
}
function f() {
nav.style.width = "90px";
abo.style.color = "black";
pro.style.color = "black";
foo.style.color = "black";
}
</script>
</body>
</html>