-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (53 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Landing Page</title>
<link href="https://fonts.googleapis.com/css?family=Playfair+Display" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="banner">
<h1>Barlow Baby Photography</h1>
<p>Cherish your Little One</p>
<p>
<a class="btn btn-primary" href="#">Book your Photo Session</a>
</p>
</div>
<div class="container">
<div class="row">
<div class="section col-xs-12 col-sm-6 col-md-3">
<img src="images/briefcase.png" alt="briefcase">
<h4>Simple</h4>
<p>A simple app, a very simple app.</p>
</div>
<div class="section col-xs-12 col-sm-6 col-md-3">
<img src="images/diamond.png" alt="diamond">
<h4>Fancy</h4>
<p>A fancy app, a very fancy app.</p>
</div>
<div class="section col-xs-12 col-sm-6 col-md-3">
<img src="images/heart.png" alt="heart">
<h4>Loving</h4>
<p>A loving app, a very loving app.</p>
</div>
<div class="section col-xs-12 col-sm-6 col-md-3">
<img src="images/briefcase.png" alt="briefcase">
<h4>Techy</h4>
<p>A techy app, a very techy app.</p>
</div>
</div>
</div>
<footer id="footer">
<p>This landing page was designed with badass women on Feb. 16th 2019.</p>
<ul class="list-inline">
<li class="list-inline-item"><a href="#"><i class="fab fa-youtube"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-facebook"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="#"><i class="fab fa-github"></i></a></li>
</ul>
</footer>
</body>
</html>