-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (77 loc) · 2.88 KB
/
Copy pathindex.html
File metadata and controls
78 lines (77 loc) · 2.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Damion&family=PT+Serif:ital@1&family=Roboto+Mono&family=Roboto:wght@300;400;500;700&family=Rubik&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./resources/css/reset.css">
<link rel="stylesheet" href="./resources/css/style.css">
<title>Ladies That Lift!</title>
</head>
<body>
<!-- Header -->
<header>
<div class="navbar">
<a href="./index.html" class="desktop logo">Ladies That Lift</a>
<nav class="desktop">
<ul>
<li><a href="">Home</a></li>
<li><a href="">Classes</a></li>
<li><a href="">About Us</a></li>
<!--Dynamic Account Button-->
<li><a href="">Log In</a></li>
</ul>
</nav>
<nav class="mobile">
<ul>
<li><a href="">Home</a></li>
<li><a href="">Classes</a></li>
<li><a href="">FAQ</a></li>
<!--Dynamic Account Button-->
<li><a href="">Log In</a></li>
</ul>
</nav>
</div>
</header>
<!-- Main Content -->
<div class="main">
<!-- Sign Up Section -->
<div id="sign-up-section" class="banner">
<div id="sign-up-cta">
<div class="content center">
<div class="sign-up-header">
<h3 class="cursive">Welcome To</h3>
<h1 class="striking">LADIES THAT LIFT</h1>
</div>
<div class="email">
<span>
Sign up now to get our weekly reminders!
</span>
<div class="button">Join the mailing list</div>
</div>
</div>
</div>
</div>
<!-- Current Classes -->
<div class="classes center">
<h1>Current Classes</h1>
</div>
<!-- About Section -->
<div id="about-section">
<div class="about center">
<div class="about-text">
<h3 class="striking">Who We Are</h3>
<span>Ladies That Lift offers female only strength training sessions. Based in Wotton-Under-Edge. Part of Steel Fitness.</span>
</div>
<div class="image-container">
<!-- Image of Trainer -->
<img src="../LadiesThatLift/resources/media/aboutphoto.png" alt="">
</div>
</div>
</div>
</div>
</body>
<footer class="footer">
<h6>Footer Details</h6>
</footer>
</html>