-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
62 lines (55 loc) · 2.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Youtuber Template - Hackesta</title>
<link rel="stylesheet" href="assets/css/font-awesome.min.css" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<!-- Bulma Version 0.6.0 -->
<link rel="stylesheet" href="assets/css/bulma.min.css" />
<style type="text/css">
html,body {
font-family: 'Open Sans';
}
</style>
</head>
<body>
<section class="hero is-fullheight is-default is-bold">
<div class="hero-head" id="navbar-container">
</div>
<div class="hero-body">
<div class="container has-text-centered">
<div class="columns is-vcentered">
<div class="column is-5">
<figure class="image is-4by3">
<img src="http://placehold.it/800x600" alt="Description">
</figure>
</div>
<div class="column is-6 is-offset-1">
<h1 class="title is-2">
Youtuber Name
</h1>
<h2 class="subtitle is-4">
Youtuber Tagline
</h2>
<div class="buttons has-addons is-centered">
<a href="#" class="button"><span class="icon"><i class="fa fa-facebook"></i></span></a>
<a href="#" class="button"><span class="icon"><i class="fa fa-twitter"></i></span></a>
<a href="#" class="button"><span class="icon"><i class="fa fa-youtube"></i></span></a>
<a href="#" class="button"><span class="icon"><i class="fa fa-instagram"></i></span></a>
</div>
<br>
</div>
</div>
</div>
</div>
<div class="hero-foot" id="footer-container">
</div>
</section>
<script src="assets/js/jquery-3.2.1.min.js" charset="utf-8"></script>
<script src="assets/js/bulma.js" charset="utf-8"></script>
<script src="assets/js/main.js" charset="utf-8"></script>
</body>
</html>