-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (29 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>Startup</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<!-- Bootstrap CSS from a CDN. This way you don't have to include the bootstrap file yourself -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<!-- My own stylesheet -->
<link href="style.css" rel="stylesheet">
</head>
<body>
<header class="startup text-center text-white d-flex">
<div class="container my-auto">
<div class="row">
<div class="col-lg-12 my-auto">
<h1 class="text-uppercase faded">
<strong>the biggest startup event of the year</strong>
</h1>
<hr>
</div>
<div class="col-lg-12 my-auto">
<button class="btn btn-primary btn-xl">Find Out More</button>
</div>
</div>
</div>
</header>
</body>
</html>