-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (48 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Journal</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<nav class="navbar">
<div class="navbar-left">
<div class="logo"><img src="assets/logo.png" alt=""></div>
</div>
<div class="navbar-right">
<div class="auth-buttons">
<button class="Pricing-btn">Pricing</button>
<button class="About-btn">About</button>
<button class="login-btn">Log in</button>
<a href="signUp.html" class="signup-btn" style="text-decoration: none;">Sign up</a>
</div>
</div>
</nav>
<div class="hero-section">
<div class="hero-content">
<h1>Explore Endless Possibilities</h1>
<h2>Design with Us</h2>
<p>Stay updated on our latest offerings, promotions, and tips for maximizing your journaling experience. Drop your email below to join our community and receive exclusive updates directly in your inbox!</p>
<div class="email-mailus">
<input type="email" placeholder="Enter your email address">
<button class="email-mail-btn">Mail Us</button>
</div>
</div>
<img src="assets/character.png" alt="Character" class="character-image">
</div>
<!-- Client -->
<div class="clients">
<h1>Our Clients</h1>
<p>We have been working with some Fortune 500+ clients</p>
</div>
<!-- Footer -->
<footer>
<div>
</div>
</footer>
</div>
</body>
</html>