-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
162 lines (138 loc) · 6.1 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="images/Asset 3.png" />
<title>Portofolio</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-sm bg-danger navbar-danger fixed-top">
<!-- LOGO -->
<a class="navbar-brand" href="#">
<div class="d-flex align-items-center">
<img src="images/Asset 3.png" class="rounded-circle ml-5" alt="logo" style="height: 30px;">
<p class="ml-2 mb-0 font-weight-bold text-light">Portofolio</p>
</div>
</a>
<!-- LINKS -->
<ul class="navbar-nav navbar-collapse justify-content-end mr-5">
<li class="nav-item">
<a class="nav-link text-light" href="#">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">PRODUCT</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">GALLERY</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">BLOG</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">INVENTORY</a>
</li>
</ul>
</nav>
<div class="container-lg" style="margin-top:80px">
<div class="card">
<div class="card-header">
My Profile
</div>
<div class="card-body d-flex align-items-center">
<!-- Foto Profile -->
<div class="image">
<img src="images/profile.jpg" style="width: 150px;" class="rounded-circle" alt="profile" />
</div>
<!-- Name -->
<div class="ml-3">
<p class="font-weight-bold mb-2">Muhammad Hamdan Zulfa</p>
<p>Back End Developer ☕</p>
<div class="flex">
<a href="#" class="btn btn-primary">Contact</a>
<a href="#" class="btn btn-secondary">Resume</a>
</div>
</div>
<!-- Availability -->
<table class="ml-5">
<tr>
<td>
<p class="font-weight-bold">Availability</p>
</td>
<td>
<p class="ml-3">Full time</p>
</td>
</tr>
<tr>
<td>
<p class="font-weight-bold">Lokasi</p>
</td>
<td>
<p class="ml-3">Sleman, Yogyakarta</p>
</td>
</tr>
<tr>
<td>
<p class="font-weight-bold">Email</p>
</td>
<td>
<p class="ml-3">[email protected]</p>
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="container-lg" style="margin-top:20px">
<div class="card">
<div class="card-body">
<form action="#" class="">
<!-- Name -->
<label for="name" class="form-label">Your Name</label>
<div class="input-group mb-3">
<span class="input-group-text">First name</span>
<input type="text" class="form-control" placeholder="(Muhammad)">
<span class="input-group-text ml-3">Last name</span>
<input type="text" class="form-control" placeholder="(Hamdan Zulfa)">
</div>
<!-- Email -->
<label for="name" class="form-label">Email</label>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="([email protected])">
</div>
<!-- Availability -->
<label for="name" class="form-label">Availability</label>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="(Full time)">
</div>
<!-- Age -->
<label for="name" class="form-label">Age</label>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="(19 tahun)">
</div>
<!-- Location -->
<label for="name" class="form-label">Location</label>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="(Sleman, Yogyakarta)">
</div>
<!-- Experience -->
<label for="name" class="form-label">Experience</label>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="(Web development)">
</div>
<input type="button" class="btn btn-success" value="SUBMIT" />
</form>
</div>
</div>
</div>
<footer class="footer sticky-bottom bg-secondary mt-3" style="height: 55px;">
<div class="container d-flex justify-content-center">
<p class="text-light mt-3 mb-0">Copyright © 2023 Hamdan</p>
</div>
</footer>
</body>
</html>