forked from SHIKHER09/Future-Door
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
85 lines (74 loc) · 2.63 KB
/
home.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="home_style.css">
<title>Future-Door</title>
<script src="script.js" defer></script>
</head>
<body>
<main>
<div class="big-wrapper light">
<img src="assets/shape.png" alt="" class="shape" />
<header>
<div class="container">
<div class="logo">
<img src="Brown_Minimalist_Moder_Simple_Coffee_Shop_Logo-removebg-preview.png" alt="logo" />
<h3>Future-Door</h3>
</div>
<div class="links">
<ul>
<li><a href="./Coming_soon/index.html">Features</a></li>
<li><a href="Searchpage.html" >Search</a></li>
<li><a href="./testimonial/testimonial.html" >Testmonials</a></li>
<li><a href="index_auth.html" class="btn ">Sign up</a></li>
</ul>
</div>
<div class="overlay"></div>
<div class="hamburger-menu">
<div class="bar"></div>
</div>
</header>
<div class="showcase-area">
<div class="container">
<div class="left">
<div class="big-title">
<h1>Future is here,</h1>
<h1>Start Exploring now.</h1>
</div>
<p class="text">
Begin your journey of research with us. <br>
Join the first ever platform made exclusively <br>
for the people who are intent in persuing research <br>
as their main expertise.
</p>
<div class="cta">
<a href="index_auth.html" class="btn">Get started</a>
</div>
</div>
<div class="right">
<img src="slider-dec.png" alt="" class="person" />
</div>
</div>
</div>
<!-- the moon icon -->
<div class="bottom-area">
<div class="container">
<button class="toggle-btn">
<i class="far fa-moon"></i>
<i class="far fa-sun"></i>
</button>
</div>
</div>
</div>
<!-- Footer -->
<footer class="w3-container w3-light-blue">
<p>Developed by <a href="./Developers/Developer.html" target="_blank">TEAM_Future-Door</a></p>
</footer>
</main>
<!-- font awesome icon -->
<script src="https://kit.fontawesome.com/a81368914c.js"></script>
</body>
</html>