-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
97 lines (87 loc) · 3.38 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap demo</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<style>
body {
background-color: black;
color: white;
}
.homepage {
border: 1px solid #000;
text-align: center;
margin-top: 10%;
background-color: rgba(0, 0, 0, 0.6);
padding: 20px;
border-radius: 10px;
}
h3 {
color: orange;
font-family: cursive;
letter-spacing: 2px;
padding: 10px;
margin-top: 50px;
}
h4 {
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}
.homepage button {
margin-top: 20px;
}
button {
background-color: orange;
padding: 6px;
cursor: url('icons8-cursor-94.png'), auto;
margin: 7px;
font-size: 1.2rem;
color: black;
border-radius: 7px;
border: 1px solid orange;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="#">VFitClub</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/about">About</a>
</li>
<li class="nav-item">
<a class="nav-link " href="/membership">MEMBERSHIPS</a>
</li>
<li class="nav-item">
<a class="nav-link " href="/contact">Contact</a>
</li>
</ul>
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<div class="homepage">
<h3>UNLOCK YOUR BEST SELF AT VFITCLUB. EMBRACE WELLNESS, TRANSFORM YOUR LIFE</h3>
<h4>Experience the Ultimate Fitness Journey with Functional Training, Plyometric Boxes, Aerobics Classes, TRX,
and More</h4>
<button>Discover CLASSES</button>
<button>SEE OUR OFFERING</button>
</div>
</body>
</html>