-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (112 loc) · 3.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<title>PROFIL</title>
<style>
body {
background-color: #e8e8e8;
}
.kartu {
width: 800px;
margin: 0 auto;
margin-top: 70px;
box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,.03);
transition: all .3s;
background-color: #591869;
border: solid 8px #ea92ff;
border-top-right-radius: 80px;
border-bottom-left-radius: 80px;
}
.kartu:hover {
background-color: #1f8a45;
border: solid 8px #4fd47e;
border-top-left-radius: 80px;
border-bottom-right-radius: 80px;
border-top-right-radius: 0px;
border-bottom-left-radius: 0px;
}
.foto {
padding: 20px;
margin-left: 30px;
margin-top: 10px;
}
tbody {
font-size: 20px;
font-weight: 300;
color:white;
}
.biodata {
margin-top: 30px;
}
</style>
</head>
<body>
<a href="https://www.kochengoren.net/"><h3 class="text-center text-success mt-3">PROFIL</h3></a>
<!-- Isi Biodata Paling Keren di HTML disini -->
<div class="container">
<div class="card kartu">
<div class="row">
<div class="col-md-4">
<div class="foto">
<img src="images/fifah.jpg" class="img-thumbnail" alt="" width="150" height="auto">
</div>
</div>
<div class="col-md-8 kertas-biodata">
<div class="biodata">
<table width="100%" border="0">
<tbody><tr>
<td valign="top">
<table border="0" width="100%" style="padding-left: 2px; padding-right: 13px;">
<tbody>
<tr>
<td width="25%" valign="top" class="textt">Nama</td>
<td width="2%">:</td>
<td style="color: #e9a7f9; font-weight:bold">Nur Khofifah</td>
</tr>
<tr>
<td class="textt">NIM</td>
<td>:</td>
<td>193110023</td>
</tr>
<tr>
<td class="textt">Prodi</td>
<td>:</td>
<td>Rekayasa Perangkat Lunak Aplikasi</td>
</tr>
<tr>
<td class="textt">Tanggal Lahir</td>
<td>:</td>
<td>25/08/2001</td>
</tr>
<tr>
<td class="textt">Asal</td>
<td>:</td>
<td>Magelang</td>
</tr>
<tr>
<td valign="top" class="textt">Hobi</td>
<td valign="top">:</td>
<td>Memanah</td>
</tr>
<tr>
<td valign="top" class="textt">Email</td>
<td valign="top">:</td>
<td>[email protected]</td>
</tr>
</tbody></table>
</td>
</tr>
</tbody></table>
</div>
</div>
</div>
</div>
</div>
<script src="js/bootstrap.min.js"></script>
</body>
</html>