-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathweek0_pdf.html
More file actions
60 lines (54 loc) · 1.69 KB
/
week0_pdf.html
File metadata and controls
60 lines (54 loc) · 1.69 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
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Week 0: Review Arsitektur Komputer</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
background-color: #1e1e2e;
}
.back-button {
position: fixed;
top: 20px;
left: 20px;
z-index: 9999;
color: #f8fafc;
text-decoration: none;
background: rgba(255, 255, 255, 0.1);
padding: 10px 15px;
border-radius: 8px;
backdrop-filter: blur(5px);
font-family: sans-serif;
font-size: 0.9em;
border: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.back-button:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
}
embed {
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<body>
<!-- Back Button -->
<a href="index.html" class="back-button">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 19-7-7 7-7"/><path d="M19 12H5"/></svg>
Kembali
</a>
<embed src="1_Slides/week0_slide.pdf" type="application/pdf" />
</body>
</html>