-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (47 loc) · 1.79 KB
/
index.html
File metadata and controls
48 lines (47 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="stylesheet" href="style.css">
<title>Landing page</title>
</head>
<body>
<header class="header">
<h5 class="simple-title">Start bootStrap</h5>
<button class="btn-primary" type="">Sign In</button>
</header>
<section id="wrapper">
<h1 class="main-title">
Build a landing page for your business <br>
or project and generate more leads!
</h1>
<br>
<div class="form-zone">
<form action="">
<input class="email-field" type="text" placeholder="Enter your email...">
<input class="btn-primary btn-submit" type="submit" value="Sign up!">
</form>
</div>
</section>
<section id="articles">
<article class="article">
<i id="icon-screen" class="fa-solid fa-display fa-8x"></i>
<h2>Fully Responsive</h2>
<p>This theme will lock great on any device. no matter the size!</p>
</article>
<article class="article">
<i class="fa-solid fa-microchip fa-8x"></i>
<h2>Bootstrap 4 Ready</h2>
<p>Featuring the lastest build of the new Bootstrap 4 framework!</p>
</article>
<article class="article">
<i class="fa-solid fa-gears fa-8x"></i>
<h2>Easy to Use</h2>
<p>Ready to use with your own content. or customize the source files!</p>
</article>
</section>
</body>
</html>