forked from hackyourfuturecanada/Week5-Challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.html
More file actions
122 lines (84 loc) · 2.95 KB
/
index1.html
File metadata and controls
122 lines (84 loc) · 2.95 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!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 -->
<link href="https://fonts.googleapis.com/css?family=Poppins:600&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Huddle landing page with alternating feature blocks</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
.part1{
background-image: url("images/bg-hero-mobile.svg");
}
body{
text-align: justify;
text-align: center;
font-size: 18px;
font-family: 'Poppins', sans-serif;
}
button{
background-color: hsl(322, 100%, 66%);
border-radius: 50px;
margin: 50px;
height: 100px
width:400px;
}
</style>
</head>
<body>
<header>
<section class="part1">
<button>Try It Free</button>
<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 connections with your users as you engage in genuine discussion.</p>
<button class"button" >Get Started For Free</button>
<img src="images\illustration-mockups.svg"
</section>
</header>
<section class"part2">
<img src="images\illustration-grow-together.svg">
<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>
</section>
<section class "part3">
<img src="images\illustration-flowing-conversation.svg">
<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>
</section>
<section class"part4">
<img src="images\illustration-your-users.svg">
<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>
</section>
<section class"part5">
<h1>Ready To Build Your Community?<h1>
<button class"button" >Get Started For Free</button>
</section>
<section class"part6">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua
+1-543-123-4567
example@huddle.com
About Us
What We Do
FAQ
Career
Blog
Contact Us
© Copyright 2018 Huddle. All rights reserved.
</section>
<footer>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</p>
</footer>
</body>
</html>