-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (98 loc) · 4.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="css/main.css">
<title>Frontend Mentor | Huddle landing page with alternating feature blocks</title>
</head>
<body>
<header class="hero">
<div class="container">
<nav class="hero__header">
<img src="images/logo.svg" alt="Logo" class="header__logo">
<a href="#" aria-label="Button" class="btn btn--header">Try it free</a>
</nav>
<div class="hero__content">
<div class="hero__cta">
<h1 class="title">Build the community your fans will love</h1>
<p class="desc">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="#" aria-label="Button" class="btn btn--cta">Get started for free</a>
</div>
<img src="images/illustration-mockups.svg" alt="Hero image" class="hero__image">
</div>
</div>
</header>
<main class="main">
<div class="container">
<div class="card">
<div class="card__text">
<h3 class="card__title">Grow together</h3>
<p class="card__desc">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 src="images/illustration-grow-together.svg" alt="Grow together" class="card__image">
</div>
<div class="card card--flipped">
<div class="card__text">
<h3 class="card__title">Flowing conversations</h3>
<p class="card__desc">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 src="images/illustration-flowing-conversation.svg" alt="Flowing conversations" class="card__image">
</div>
<div class="card">
<div class="card__text">
<h3 class="card__title">Your users</h3>
<p class="card__desc">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 src="images/illustration-your-users.svg" alt="Your users" class="card__image">
</div>
<div class="card-cta">
<h2>Ready to build your community?</h2>
<a href="#" aria-label="Button" class="btn btn--cta">Get started for free</a>
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<img src="images/logo.svg" alt="Logo" class="footer__logo">
<div class="footer__content">
<div class="contacts">
<div class="contacts__location">
<img src="images/icon-location.svg" alt="loc" class="icon">
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Saepe ducimus maiores ex quas voluptatum optio excepturi dolorem quasi eum ullam!</p>
</div>
<div class="contacts__phone">
<img src="images/icon-phone.svg" alt="phone" class="icon">
<p>+1-543-123-4567</p>
</div>
<div class="contacts__email">
<img src="images/icon-email.svg" alt="email" class="icon">
<p>[email protected]</p>
</div>
</div>
<div class="nav">
<ul>
<li class="nav__item"><a href="#" class="nav__link">About Us</a></li>
<li class="nav__item"><a href="#" class="nav__link">What We Do</a></li>
<li class="nav__item"><a href="#" class="nav__link">FAQ</a></li>
<li class="nav__item"><a href="#" class="nav__link">Career</a></li>
<li class="nav__item"><a href="#" class="nav__link">Blog</a></li>
<li class="nav__item"><a href="#" class="nav__link">Contact Us</a></li>
</ul>
</div>
<div class="social">
<a href="#" class="social--facebook"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social--twitter"><i class="fab fa-twitter"></i></a>
<a href="#" class="social--instagram"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="copyright">
<i class="far fa-copyright fa-xs"></i>
<p>Copyright 2018 Huddle. All rights reserved.</p>
</div>
</div>
</footer>
<script src="https://kit.fontawesome.com/a33a0316b0.js" crossorigin="anonymous"></script>
</body>
</html>