-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.php
82 lines (75 loc) · 4.23 KB
/
cv.php
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
<!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="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="css/profl.css">
<title>Profil</title>
</head>
<body>
<div class="page-content page-container">
<div class="padding">
<div class="row d-flex justify-content-center">
<div class="col-xl-6 col-md-12">
<div class="card user-card-full">
<div class="row mx-0">
<div class="col-sm-4 bg user-profil">
<div class="card-block text-center text-white">
<div class="m-b-25">
<img src="fotoo.png" width="150px" alt="" class="img-radius">
</div>
<div class="f-w-600">Fadell</div>
</div>
</div>
<div class="col-sm-8">
<h3 class="mt-3 text-center">PROFIL PEMILIK</h3>
<div class="card-block">
<h6 class="m-b-20 pb-2 b-b-default f-w-600">Information</h6>
<div class="row">
<div class="col-sm-12">
<p class="m-b-10 f-w-600">Nama Lengkap</p>
<h6 class="text-muted f-w-400">Fadel Muhammad</h6>
</div>
<div class="col-sm-12">
<p class="m-b-10 f-w-600">Jurusan</p>
<h6 class="text-muted f-w-400">Teknik Informatika </h6>
</div>
</div>
<h6 class="m-b-20 mt-3 pb-2 b-b-default f-w-600">Skill</h6>
<div class="row">
<div class="col-sm-6">
<p class="m-b-10 f-w-600">Java</p>
</div>
<div class="col-sm-6">
<p class="m-b-10 f-w-600">Web Development</p>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<p class="m-b-10 f-w-600">Desain</p>
</div>
<div class="col-sm-6">
<p class="m-b-10 f-w-600">Mysql</p>
</div>
</div>
<div class="row">
<div class="col-sm-7 mt-4 mb-3">
<a href="index.php" class="button buttn tex">Home</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Option 1: jQuery and Bootstrap Bundle (includes Popper) -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html>`