-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (130 loc) · 4.61 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!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" />
<title>Landing page</title>
<link rel="stylesheet" href="index.css" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap"
rel="stylesheet"
/><link href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@600&display=swap" rel="stylesheet">
<script
src="https://kit.fontawesome.com/8d2b9cd8f4.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body>
<header>
<div class="a">
<div class="a1">
<img src="icons/logo.svg" alt="logo" />
<button>Try it free</button>
</div>
<div class="a2">
<h1>Build the community your fans will love</h1>
<p>
Huddle re-imagines the way we build communities. You have a voice
but so does your audience.Create connecetions with your users as you
engage in genuine discussion
</p>
<button>Get started for free</button>
</div>
<div class="a3">
<img src="icons/illustration-mockups.svg" alt="mockups" />
</div>
</div>
</header>
<main>
<div class="b" data-aos="fade-left" data-aos-duration="1000">
<div class="b2">
<div>
<h1>Grow Together</h1>
<p>
Generate meaningful discussions with your audience and build a
strong, loyal community.Think of the insightful conversations you
miss out on with a feedback form.
</p>
</div>
<div class="image">
<img src="icons/illustration-grow-together.svg" alt="" />
</div>
</div>
<div class="b2" data-aos="fade-right" data-aos-duration="1000">
<div class="image">
<img
src="icons/illustration-flowing-conversation.svg"
alt="flowing conversations"
/>
</div>
<div>
<h1>Flowing Conversations</h1>
<p>
You wouldn't paginate a conversation in real life, so why do it
online? Our threads have just-in-time loading for a more natural
flow
</p>
</div>
</div>
<div class="b2" data-aos="fade-left" data-aos-duration="1000">
<div>
<h1>Your Users</h1>
<p>
It takes no time at all to integrate Huddle with your app's
authentication solution. This means, once signed in to your app,
your users can start chatting immediately
</p>
</div>
<div class="image">
<img src="icons/illustration-your-users.svg" alt="" />
</div>
</div>
</div>
<div class="c" data-aos="fade-down" data-aos-duration="1000">
<h1>Ready to build your Community?</h1>
<button>Get Started For Free</button>
</div>
</main>
<footer>
<div class="d">
<img src="icons/white-logo.svg" alt="logo" id="img1" />
<div class="d1">
<div class="d2">
<img src="icons/icon-location.svg" alt="location" />
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Excepturi alias saepe sit quos corporis neque
explicabo quod praesentium sequi.
</p>
<img src="icons/icon-phone.svg" alt="phone" />
<p>+1-543-123-4567</p>
<img src="icons/icon-email.svg" alt="email" />
<p>[email protected]</p>
</div>
<ul class="nav">
<li><a href="#">About Us</a></li>
<li><a href="#">What we do</a></li>
<li><a href="#">FAQ</a></li>
</ul>
<ul>
<li><a href="#">Career</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<div id="icons">
<i id="facebook" class="fa fa-facebook"></i>
<i id="twitter" class="fa fa-twitter"></i>
<i id="insta" class="fa fa-instagram"></i>
</div>
</div>
</div>
<span><i style="font-size: 10px; padding: 3px;" class="fa fa-copyright"></i>Copywrite 2018 Huddle. All rights reserved</span>
</footer>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>