-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintro.html
54 lines (49 loc) · 2.1 KB
/
intro.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Learning: Introduction to landing page">
<meta name="keyword" content="html, css, learning" />
<meta name="author" content="benazeer" />
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<link href="./assets/images/favicon-32x32.png" rel="apple-touch-icon" type="image/png" sizes="32x32">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet'>
<link rel="stylesheet" href="./assets/css/intro.css" />
<title>Introductory Landing Page</title>
</head>
<body>
<div class="main-content">
<header>
<div class="logo">
<img src="./assets/images/logo.svg">
</div>
</header>
<main>
<section>
<div class="left-images">
<img src="./assets/images/illustration-mockups.svg">
</div>
<div class="right-content">
<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>
Register
</button>
</div>
</section>
</main>
<footer>
<div class="social-media">
<a href=""> <i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href=""> <i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href=""> <i class="fa fa-instagram" aria-hidden="true"></i></a>
</div>
</footer>
</div>
</body>
</html>