-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (54 loc) · 2.32 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
<title>GYM Nation</title>
</head>
<body>
<div class="top_flexbox">
<div class="topflex_item" id="topflex_left">
<img src="logo.png" alt="" class="topflex_left_item">
<p class="topflex_left_item">GYM Nation</p>
</div>
<div class="topflex_item" id="topflex_mid">
<div class="topflex_mid_item">
<a href="#" class="link_style">Home</a>
<a href="#" class="link_style">About</a>
<a href="#" class="link_style">Contact</a>
<a href="#" class="link_style">Find us</a>
</div>
</div>
<div class="topflex_item" id="topflex_right">
<div class="topflex_right_item">
<button class="btn">Login</button>
</div>
<div class="topflex_right_item">
<button class="btn">Sign up</button>
</div>
</div>
</div>
<div class="main_form_flexbox">
<div class="main_flexbox_item" id="main_flexbox_heading">
JOIN THE FITNESS
</div>
<div class="main_flexbox_item">
<input type="text" name="#" id="" class="input_style" placeholder="Name">
<input type="number" name="#" id="" class="input_style" placeholder="Age">
<input type="email" name="#" id="" class="input_style" placeholder="Email">
<input type="tel" name="#" id="" class="input_style" placeholder="Mobile Number">
</div>
<div class="main_flexbox_item" id="form_btn">
<button type="submit" class="btn">Submit</button>
<button type="reset" class="btn">Reset</button>
</div>
</div>
<div class="designer_flexbox">
<div class="designer_flexbox_item" id="designer_heading">Website Designer</div>
<img src="designer.png" alt="" class="designer_flexbox_item" id="designer_image">
<div class="designer_flexbox_item" id="designer_name">Ashu Kumar</div>
</div>
</body>
</html>