-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
139 lines (113 loc) · 4.74 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
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<title>My First Challenge</title>
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Merriweather|Montserrat&display=swap" rel="stylesheet">
</head>
<body>
<div class="top_container">
<div class="nav-bar">
<img src="images/logo.svg" alt="huddle-img">
<a class="tryit" href="#TryItFree" target="_blank">Try It Free</a>
</div>
<div class="intro">
<div class="intro-description">
<h1> Build The Community Your Fans Will Love</h1>
<p class="description">Huddle re-imagines the way we build communities. You have a voice, but so does your audience.
Create connections with your users as you engage in genuine discussion.</p>
<a href="#" class="button">Get Started For Free</a>
</div>
<img class="mockups-img" src="images/illustration-mockups.svg" alt="mockups-img">
</div>
</div>
<hr>
<div class="middle-container">
<div class="message-row">
<div class="message">
<div class="grow-together">
<h2>Grow Together.</h2>
<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>
<img class="grow-together-img" src="images/illustration-grow-together.svg" alt="grow-together-img">
</div>
<div class="message">
<div class="flowing-coverstations">
<h2>Flowing Conversations.</h2>
<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>
<img class="flowing-conversation-img" src="images/illustration-flowing-conversation.svg" alt="flowing-togehter-img">
</div>
<div class="message">
<div class="your-users">
<h2>Your Users.</h2>
<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>
<img class="your-users-img" src="images/illustration-your-users.svg" alt="your-users-img">
</div>
</div>
<div class="contact">
<h2>Ready To Build Your Community?</h2>
<a class="button" href="#getitfree">Get Started For Free</a>
</div>
</div>
<div class="bottom_container">
<div class="left-footer">
<img class="huddle-icon" src="images/logo.svg" alt="huddle-img">
<div class="information">
<img class="icon" src="images/map.svg" alt="map-img">
<p>SAN FRANCISCO <br> 12345 Mission Street, 12 Floor <br>San Francisco, CA 12345</p>
</div>
<div class="information">
<img class="icon" src="images/gmail.svg" alt="gmail-img">
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
<div class="information">
<img class="icon" src="images/phone.svg" alt="phone-img" href="mailto:[email protected]">
<p><a href="tel:1-510-517-6782">+1-234-4567-1234</a></p>
</div>
<form class="" action="index.html" method="post">
</form>
</div>
<div class="middle-footer">
<div class="first-list">
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">What We Do</a></li>
<li><a href="#">FAQ</a></li>
</ul>
</div>
<div class="second-list">
<ul>
<li><a href="#">Career</a></li>
<li><a href="#">Blog</a></li>
<li><a href="">Contact Us</a></li>
</ul>
</div>
</div>
<div class="right-footer">
<a href="https://www.facebook.com/" target="_blank"><img class="social-media-icon" src="images/facebook.svg" alt="facebook-img"></a>
<a href="https://www.instagram.com/" target="_blank"><img class="social-media-icon" src="images/instagram.svg" alt="instagram-img"></a>
<a href="https://twitter.com/" target="_blank"><img class="social-media-icon" src="images/twitter.svg" alt="twitter.svg"></a>
</div>
</div>
<!--------------->
<!-- @COPYRIGHT -->
<div class="copyright">
Copyright 2018 Huddle. All rights reserved.
</div>
<!--- EXTRA CONTAINER ------>
<div class="extra_container">
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Ray Tran</a>.
</p>
</div>
</body>
</html>