-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (91 loc) · 3.49 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!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>Muhammad Alfas ST</title>
<link rel="shortcut icon" href="../images/fav_icon.png" type="image/x-icon">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<!-- Bulma Version 0.9.x -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/bulma.min.css" />
<style type="text/css">
html,
body {
font-family: 'Open Sans';
}
img {
padding: 5px;
border: 1px solid #ccc;
}
</style>
</head>
<body>
<section class="hero is-fullheight is-default is-bold">
<div class="hero-head">
<nav class="navbar">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item" href="../">
<img src="alf.svg" alt="Logo">
</a>
<span class="navbar-burger burger" data-target="navbarMenu">
<span></span>
<span></span>
<span></span>
</span>
</div>
<div id="navbarMenu" class="navbar-menu">
<div class="navbar-end">
<div class="tabs is-right">
<ul>
<li class="is-active"><a>Home</a></li>
<li><a href="">Blog</a></li>
<li><a href="">Publications</a></li>
<li><a href="">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</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="network.png" alt="Description">
</figure>
</div>
<div class="column is-6 is-offset-1">
<h1 class="title is-2">
Superhero Scaffolding
</h1>
<h2 class="subtitle is-4">
Let this cover page describe a product or service.
</h2>
<br>
<p class="has-text-centered">
<a class="button is-medium is-info is-outlined">
Learn more
</a>
</p>
</div>
</div>
</div>
</div>
<div class="hero-foot">
<div class="container">
<div class="tabs is-centered">
<ul>
<li><a>And this is the bottom</a></li>
</ul>
</div>
</div>
</div>
</section>
<script src="../js/bulma.js"></script>
</body>
</html>