-
Notifications
You must be signed in to change notification settings - Fork 1
/
detail.html
102 lines (89 loc) · 3.29 KB
/
detail.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
<!DOCTYPE html>
<html style="font-family: 'Karla', sans-serif;">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0" />
<title>Detail</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Karla:400,700" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.js"></script>
<link rel="stylesheet" href="detail.css">
<link rel="icon" type="image/png" href="images/Logo only.png">
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
$(document).ready(function() {
$(".word").fancybox({
'width': 600, // or whatever
'height': 320,
'type': 'iframe'
});
});
</script>
</head>
<body>
<!-- HEADER -->
<div class="header">
<div class="kotak">
<a href="#" class="logo">
<img src="images/Logo putih.png">
</a>
</div>
<div class="topnav" id="myTopnav">
<a href="#">ABOUT</a>
<a href="penilaian.html">PENILAIAN</a>
<a href="login.html">LOGIN</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
</div>
<!-- NAVBAR -->
<!-- isi -->
<div class="background">
<div class="cont">
<h1>PROFILE</h1>
<div class="profile">
<div class="image">
<img src="https://bee2buy.com/site_uploads/company/640559297.jpg">
</div>
<div class="block">
<div class="nama">
<span>PEMINATAN</span>
<h1>NAMA REKRUITAN BASDAT</h1>
<h3>1301111111</h3>
</div>
<hr>
<div class="file">
<div class="isi">
<span>Motivational Letter</span>
<a class="word" href="https://firstsiteguide.com/how-to-start-a-blog.pdf"><button class="btn btnstyle">VIEW</button></a>
</div>
<div class="isi">
<span>Curriculum Vitae</span>
<a class="word" href="https://firstsiteguide.com/how-to-start-a-blog.pdf"><button class="btn btnstyle">VIEW</button></a>
</div>
<div class="isi">
<span>Additional Task</span>
<a class="word" href="https://firstsiteguide.com/how-to-start-a-blog.pdf"><button class="btn btnstyle">VIEW</button></a>
</div>
<div class="isi">
<span>KHS</span>
<a class="word" href="https://firstsiteguide.com/how-to-start-a-blog.pdf"><button class="btn btnstyle">VIEW</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- footer -->
</body>
</html>