-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (104 loc) · 5.13 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
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Blog Makanan</title>
<link rel="stylesheet" href="vendor/css/styles.css">
<!-- Impor FontAwesome 5 -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
</head>
<body onload="load_rumah()">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 ml-auto text-center headerblog py-3" style="background-image: url(assets/img/bg-header2.jpg);background-position: bottom right;background-size: cover;">
<div class="headercontent">
<h1 class="text-bold display-2">Hi, My name is Kenneth.</h1>
<div class="col-md-4 my-2 mx-auto">
<h4 class="my-1 py-1 mx-auto">Welcome to my blog.</h4>
</div>
</div>
</div>
</div>
</div>
<hr style="width:80%;">
<div class="container">
<h2 class="text-center pb-3 my-2">stuff that I cover</h2>
<div class="row">
<div class="col-md-4">
<a href="">
<h3 class="featuredCard" style="background: transparent url('assets/img/fb2.jpg') no-repeat right top;background-size: cover;">Shot</h3>
</a>
</div>
<div class="col-md-4">
<a href="">
<h3 class="featuredCard" style="background: transparent url('assets/img/fb2alt.jpg') no-repeat right top;background-size: cover;">Tutorial
</h3>
</a>
</div>
<div class="col-md-4">
<a href="">
<h3 class="featuredCard" style="background: transparent url('assets/img/fb3.jpg') no-repeat right top;background-size: cover;color: black;">Lumia</h3>
</a>
</div>
</div>
</div>
<hr style="width:80%;">
<div class="container">
<div class="row h-100">
<aside class="col-md-4 sticky-top sidebar bg-white" id="sidebar">
<nav class="navbar navbar-expand navbar-light py-2">
<div class="navbar-collapse">
<ul class="flex-fill flex-md-column navbar-nav justify-content-between">
<li class="nav-item show in active">
<a href="#rumah" onclick="load_rumah()" class="nav-link px-3">
<i class="fas fa-home"></i>
<span class="d-md-inline px-2">Home</span>
</a>
</li>
<li class="nav-item">
<a href="#tentang" onclick="load_tentang()"class="nav-link px-3">
<i class="fas fa-user"></i><span class="d-md-inline px-2"> Tentang</span>
</a>
</li>
<li class="nav-item">
<a href="#portofolio" onclick="load_portofolio()" class="nav-link px-3">
<i class="fas fa-camera"></i>
<span class="d-md-inline px-2">Portofolio</span>
</a>
</li>
<li class="nav-item">
<a href="http://soundcloud.com/akpt08" class="nav-link px-3" target="_blank">
<i class="fas fa-podcast"></i>
<span class="d-md-inline px-2">Podcast</span>
</a>
</li>
<li class="nav-item">
<a href="#bukutamu" onclick="load_bukutamu()" class="nav-link px-3">
<i class="fas fa-book"></i>
<span class="d-md-inline px-2">Buku Tamu</span>
</a>
</li>
</ul>
</div>
</nav>
</aside>
<div class="col-md-8 blogclean">
<div class="container-fluid">
<div class="row">
<!-- <div class="col-md-auto"> -->
<div id="isi"></div>
<!-- </div> -->
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="vendor/node_modules/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="vendor/node_modules/popper.js/dist/umd/popper.min.js"></script>
<script type="text/javascript" src="vendor/node_modules/bootstrap/js/dist/index.js"></script>
<!-- Impor kostum javascriptnya sayy -->
<script src="vendor/js/jamal.js"></script>
</body>
</html>