-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
151 lines (133 loc) · 4.74 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
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stamina Website</title>
<!-- Bootstrap CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<style>
/* Small width orange background */
.top-bar {
background-color:#FF7F50;
height: 50px;
}
.nav-link:hover {
color: orange; /* Changes text color to orange on hover */
}
/* Website name */
.website-name {
float: left;
line-height: 50px;
}
/* Social icons */
.social-icons {
float: right;
margin-right: 20px;
line-height: 50px;
}
/* Bigger width white background */
.main-nav {
background-color: white;
padding: 60px;
height: 70px;
}
/* Body grey background */
body {
background-color: Gray;
}
/* Center girl pic and text */
.center-content {
text-align: center;
margin-top: 50px;
}
h1{
color:white;
font-family: Arial, Helvetica, sans-serif;
font-size: 60px;
}
p{
font-weight: bold;
text-align: left;
margin-left: 50px;
}
.account-section {
background-color: lightGray;
padding: 20px;
margin-top: 20px;
text-align: center;
}
.btn-custom {
width: 150px;
margin: 10px;
}
.btn-orange {
background-color:#FF7F50;
color: white;
}
.right-text {
text-align: right;
margin-left: 600px; /* Adjusts the left margin to create a gap */
}
</style>
</head>
<body>
<!-- Top Bar -->
<div class="top-bar">
<!-- Website Name -->
<div class="website-name">
</div>
<!-- Social Icons -->
<div class="social-icons">
<img src="C:\Users\nasin\Downloads\t.jpg" alt="Twitter" width="30px" height="30px">
<img src="C:\Users\nasin\Downloads\i.jpg" alt="Instagram" width="30px" height="30px">
<img src="C:\Users\nasin\Downloads\f.jpg" alt="Cat" width="30px" height="30px">
</div>
</div>
<!-- Main Navigation -->
<nav class="navbar navbar-expand-lg navbar-light bg-light ">
<div class="container-fluid">
<p class="navbar-brand" href="#">STAMINA.</p>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="right-text">
<div class="navbar-nav">
<a class="nav-link active" aria-current="page" align=right href="#">HOME</a>
<a class="nav-link" href="#">GALLERY</a>
<a class="nav-link" href="#">TRAINER</a>
<a class="nav-link" href="#">PRICING</a>
<a class="nav-link" href="#">BLOG</a>
<a class="nav-link" href="#">CONTACT</a>
<a class="nav-link" href="#">FEEDBACK</a>
<a class="nav-link" href="#">ADMIN</a>
</div>
</div>
</div>
</div>
</nav>
<div class="container account-section">
<h3>Welcome to Stamina!</h3>
<h6>Join us for a healthy future.</h6>
<a href="C:\Users\nasin\OneDrive\Documents\registration.html" class="btn btn-orange">Create an account</a>
<a href="C:\Users\nasin\OneDrive\Documents\login.html" class="btn btn-orange">Login </a>
</div>
<!-- Body Content -->
<div class="container mt-5>
<div class="row">
<!-- Heading and Girl Pic -->
<div class="col-md-12 center-content">
<h1>MAKE IT A LIFESTYLE,</h1>
<h1>NOT A DUTY</h1>
<img src="C:\Users\nasin\Downloads\girl.jpg" alt="Girl" class="img-fluid mt-3">
</div>
</div></div>
</div>
<!-- Bootstrap JS, Popper.js, and jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>