-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfreeTrail.html
More file actions
46 lines (44 loc) · 1.98 KB
/
freeTrail.html
File metadata and controls
46 lines (44 loc) · 1.98 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
<!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 rel="stylesheet" href="utility.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Baskervville+SC&family=Bungee+Tint&family=Matemasie&family=New+Amsterdam&display= Baskervville+SC&display=swap"
rel="stylesheet">
<title>Free Trail</title>
</head>
<body>
<nav>
<div class="logo">
<img src="RA_logo.png" alt="logo">
<p class="green">Fitness</p>
</div>
<ul class="nav-links">
<li> <a href="#">Membership</a></li>
<li> <a href="#">Amenities</a></li>
<li> <a href="#">About Us</a></li>
<li> <a href="#">Contact</a></li>
<li> <a class="white" id="free-trail" href="#">Book A Free Trial </a></li>
</ul>
</nav>
<main>
<div class="freeTrailBg full-height full-width">
<div class="freeTrialText full-height full-width">
<div class="mainText">Book Your <span class="yellow">3 Days</span> Free Trail Now!! </div>
<p class="belowText"> One of the Best GYM in Mumbai. </p>
<form class="freeTrailForm" action=""></form>
<input class="trailForm yellow" type="text" placeholder="Name*" name="Name" >
<input class="trailForm yellow"type="text" placeholder="Contact*" name="Contact">
<input class="trailForm yellow"type="email" placeholder="Email(Optional)" name="Email ">
<a class="green" href="#">Book Now</a>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>