-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (40 loc) · 1.71 KB
/
Copy pathindex.html
File metadata and controls
73 lines (40 loc) · 1.71 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
<!-- “The bad news is time flies. The good news is you're the pilot. "
—Michael Altshuler -->
<!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 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=Open+Sans|Poppins:400,600&display=swap" rel="stylesheet">
<!-- <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" /> -->
<title>Frontend Mentor | Huddle landing page with single introductory section</title>
<script src="https://kit.fontawesome.com/3398ac1b94.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="heading">
<img src="images/logo.svg" alt="Huddle logo">
</div>
<div class="fullpage">
<div class='container'>
<div class='screenshot'>
<img src='images/illustration-mockups.svg' ;>
</div>
<div class='textstuff'>
<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>
<div class="dumbbutton">
<a href="http://www.frontendmentor.io" class="myButton">Register</a>
</div>
</div>
</div>
<div class="socialcontainer">
<i class="fbook fab fa-facebook-f"></i>
<i class="twit fab fa-twitter"></i>
<i class="insta fab fa-instagram"></i>
</div>
</div>
</body>
</html>