forked from Kumar-Gowda-D/Fithub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfitness.html
More file actions
101 lines (93 loc) · 2.03 KB
/
fitness.html
File metadata and controls
101 lines (93 loc) · 2.03 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
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>fitness</title>
<style>
*{
padding: 0;
margin: 0;
}
.main{
background-image: url(fitimg.jpg);
background-repeat: no-repet;
background-size: cover;
height: 600px;
position: relative;
}
button{
background-color: white;
color: black;
border-radius: 50px;
height: 25px;
width: 70px;
border-color: black;
border-width: 3px;
}
.but{
width: 150px;
display: flex;
flex-direction: row;
justify-content: space-around ;
margin-top: 10px;
margin-right: 30px;
position: absolute;
right: 7px;
:hover{
background-color: rgb(158, 34, 127);
}
}
.wel{
display: flex;
flex-direction: row;
justify-content: flex-start;
position: absolute;
margin-top: 10px;
margin-left: 10px;
}
.wel2{
display: flex;
flex-direction: row;
justify-content: flex-start;
position: absolute;
margin-top: 300px;
margin-left: 150px;
font-size: 25px;
color: white;
font-weight: bold;
font-family: monospace;
}
.fit{ display: flex;
flex-direction: row;
justify-content: center;
position: absolute;
margin-top: 0px;
margin-left:150px;
font-size: 50px;
color: white;
font-weight: bold;
font-family :Georgia, 'Times New Roman', Times, serif;
}
</style>
</head>
<body>
<div class="main ">
<div class="wel">
<img src="logo.jpg" height="125px" width="125px" style="border-radius: 200px;">
<br>
</div>
<div class="but">
<a href="login.html" ><button >Log In</button></a>
<a href="signup.html"><button>Sign Up</button></a>
</div>
<div class="fit">
<p style="margin-top: 50px; color: rgb(126, 6, 6);">FIT HUB</p>
</div>
<div class="wel2">
<pre>It’s Your Move
The full-body and whole-mind workout, designed just for you.</pre>
</div>
</div>
</div>
</html>