-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (101 loc) · 4.36 KB
/
index.html
File metadata and controls
103 lines (101 loc) · 4.36 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
102
103
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap demo</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-LN+7fdVzj6u52u30Kp6M/trliBMCMKTyK833zpbD+pXdCLuTusPj697FH4R/5mcr" crossorigin="anonymous">
</head>
<body>
<!--Navbar-->
<header class="">
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img height="130px" width="130px " src="IMG-20250823-WA0011.jpg" alt="logo">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Features</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Solution</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#">Resources</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#">Pricing</a>
</li>
</ul>
<form class="d-flex" role="botton">
<input type="text" class="form-control me-2" placeholder="Join for 30 Days">
</form>
</div>
</div>
</nav>
</header>
<main>
<!---Hero section-->
<style>
.hero-section{
background-image: url(istockphoto-603856622-612x612.jpg);
background-repeat: no-repeat;
background-position: 50% 20%;
background-size: cover;
max-width: 100%;
border-radius: 20px;
height: 430px;
}
.card{
background: rgba(255, 255, 255, 0.726);
padding: 10px;
border-radius: 10px;
width: 18rem;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
position: absolute;
bottom: 380px;
left: 45%;
}
.footer img {
margin: 0 190px;
}
</style>
<div class="hero-section">
<div class="container" style="position: absolute; bottom: 450px; left: 7%;">
<h1 style="color: aliceblue; font-weight: bold;">Understand customer <br>better than anyone</h1>
<p class="mt-3" style="color: aliceblue;">Get the best-in-class group mentoring plans and <br>professional benefits for your team.</p>
<a href="#" class="btn btn-primary" style="color: aliceblue;">Start 14 Days Free Trial</a>
<br> <br>
<p class="disable" style="color: aliceblue;"> No credit card required - Cancel anytime</p>
</div>
</div>
<!--card-->
<div class="card">
<div class="container">
<h4 style="font-weight: bold;">Jane Cooper</h4>
Joined: _____________________ <br>
Last Login: _________________ <br>_
About: _______________________________ <br>
</div>
</div>
</main>
<!--Footer-section-->
<footer>
<div class="footer">
<p style="text-align: center; font-weight: lighter;">Best rated design tools in G2 and loved by the world's best designer </p>
<div class="d-flex justify-content-center align-items-center flex-wrap">
<img height="80px" width="80px "src="IMG-20250823-WA0007.jpg" alt="logo">
<img height="80px" width="80px " src="IMG-20250823-WA0009.jpg" alt="logo">
<img height="80px" width="80px "src="IMG-20250823-WA0014.jpg" alt="logo">
<img height="80px" width="80px " src="IMG-20250823-WA0015.jpg" alt="logo">
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/js/bootstrap.bundle.min.js" integrity="sha384-ndDqU0Gzau9qJ1lfW4pNLlhNTkCfHzAVBReH9diLvGRem5+R9g2FzA8ZGN954O5Q" crossorigin="anonymous"></script>
</body>
</html>