-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
212 lines (198 loc) · 8.93 KB
/
index.html
File metadata and controls
212 lines (198 loc) · 8.93 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<!doctype html>
<html lang="en" id="home">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Portfolio</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#home" class="navbar-brand page-scroll"><img src="img/logo.png" alt="logo" class="logo"></a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="#about" class="page-scroll">About</a></li>
<li><a href="#portfolio" class="page-scroll">Portfolio</a></li>
<li><a href="#contact" class="page-scroll">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Akhir Navbar -->
<!-- Jumbotron -->
<div class="jumbotron text-center">
<img src="img/andre.jpg" alt="andre" class="img-circle">
<h1 class="nama">Andreas Pratama</h1>
<p class="job">College Student | Rookie Programmer</p>
</div>
<!-- Akhir Jumbotron -->
<!-- About -->
<section class="about" id="about">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h2 class="text-center">About</h2>
<hr>
</div>
</div>
<div class="row">
<div class="col-sm-5 col-sm-offset-1">
<p class="pKiri text-justify">Lorem ipsum dolor sit amet consectetur adipisicing elit. Qui, omnis
nemo
deleniti doloremque
placeat labore harum molestias nulla ducimus odit reprehenderit repudiandae maxime.
Ratione
nulla libero ex, sint ducimus itaque quod beatae excepturi quo totam facilis soluta
temporibus
eos assumenda velit possimus non odio voluptates dolor nihil molestiae optio. Omnis!</p>
</div>
<div class="col-sm-5">
<p class="pKanan text-justify">Lorem ipsum, dolor sit amet consectetur adipisicing elit. At amet
iure
expedita recusandae nemo
aut velit earum dignissimos debitis laudantium ipsum veniam aliquid, deleniti, molestias
dicta!
Hic unde quae vitae, dolorum beatae harum natus repellat nulla fuga dolore minus nisi
labore
quidem, excepturi repellendus voluptates molestiae aliquid sunt ex vel?</p>
</div>
</div>
</div>
</section>
<!-- Akhir About -->
<!-- Portfolio -->
<section class="portfolio" id="portfolio">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h2 class="text-center">Portfolio</h2>
<hr>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<a href="" class="thumbnail">
<img src="img/portfolio/1.jpg" alt="porto1">
</a>
</div>
<div class="col-sm-4">
<a href="" class="thumbnail">
<img src="img/portfolio/2.jpg" alt="porto2">
</a>
</div>
<div class="col-sm-4">
<a href="" class="thumbnail">
<img src="img/portfolio/3.jpg" alt="porto3">
</a>
</div>
<div class="col-sm-4">
<a href="" class="thumbnail">
<img src="img/portfolio/4.jpg" alt="porto4">
</a>
</div>
<div class="col-sm-4">
<a href="" class="thumbnail">
<img src="img/portfolio/5.jpg" alt="porto5">
</a>
</div>
<div class="col-sm-4">
<a href="" class="thumbnail">
<img src="img/portfolio/6.jpg" alt="porto6">
</a>
</div>
</div>
</div>
</section>
<!-- Akhir Portfolio -->
<!-- Contact -->
<section class="contact" id="contact">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h2 class="text-center">Contact</h2>
<hr>
</div>
</div>
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<div class="form-group">
<label for="nama">Nama</label>
<input type="text" id="nama" class="form-control" placeholder="Masukan nama">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="text" id="email" class="form-control" placeholder="Masukkan email">
</div>
<div class="form-group">
<labl for="telp">No Telp</labl>
<input type="tel" id="telp" class="form-control" placeholder="Masukkan no telp">
</div>
<select class="form-control">
<option value="">Pilih Kategori</option>
<option value="">Web Design</option>
<option value="">Web Development</option>
</select>
<div class="form-group">
<label for="pesan">Pesan</label>
<textarea class="form-control" rows="10" placeholder="Masukkan pesan"></textarea>
</div>
<button type="submit" class="btn btn-primary">Kirim</button>
</div>
</div>
</div>
</section>
<!-- Akhir Contact -->
<!-- Footer -->
<footer>
<div class="container text-center">
<div class="row">
<div class="col-sm-12">
<p>Copyright <i class="glyphicon glyphicon-copyright-mark"></i> 2020 | Built by <a
href="https://www.instagram.com/dre.tam/" target="_blank">Andreas</a></p>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<a href="https://twitter.com/Tama8899" class="btn btn-info" target="_blank">Follow on
Twitter</a>
<a href="https://www.youtube.com/channel/UCI6_2BVjnPk2PHj3znypyFA?view_as=subscriber"
class="btn btn-danger" target="_blank"> <i class="glyphicon glyphicon-play"> </i>
Subscribe to
YouTube</a>
</div>
</div>
</div>
</footer>
<!-- Akhir Footer -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"
integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous">
</script>
<script src="js/script.js"></script>
</body>
</html>