-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (79 loc) · 3.02 KB
/
index.html
File metadata and controls
88 lines (79 loc) · 3.02 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MyResume</title>
<link rel="stylesheet" href="fontawesome-free-6.1.2-web/css/all.min.css">
<!-- Template Main CSS File -->
<link href="css/style.css" rel="stylesheet">
<link href="css/nav.css" rel="stylesheet">
<link rel="stylesheet" href="js/js.js">
</head>
<body>
<div class="container">
<div class="navigasion">
<ul>
<li class="list active" data-color-="#9dc2c5">
<a href="#">
<span class="icon"><i class="fa-solid fa-house"></i></span>
<span class="title">Home</span>
</a>
</li>
<li class="list" data-color-="#88bba2">
<a href="#">
<span class="icon"><i class="fa-solid fa-user"></i></span>
<span class="title">About</span>
</a>
</li>
<li class="list" data-color-="#bebb8f">
<a href="#">
<span class="icon"><i class="fa-solid fa-graduation-cap"></i></span>
<span class="title">Resume</span>
</a>
</li>
<li class="list" data-color-="#a85622">
<a href="#">
<span class="icon"><i class="fa-solid fa-briefcase"></i></span>
<span class="title">Porto</span>
</a>
</li>
<li class="list" data-color-="#8f3939">
<a href="#">
<span class="icon"><i class="fa-brands fa-blogger"></i></span>
<span class="title">Blog</span>
</a>
</li>
<li class="list" data-color-="#9d7ca1">
<a href="#">
<span class="icon"><i class="fa-solid fa-envelope"></i></span>
<span class="title">Contact</span>
</a>
</li>
<div class="indikator"></div>
</ul>
</div>
<div class="profil">
<div class="tentang">
<img src="img/main_photo.jpg" alt="main_photo">
<h2>Alex Smith</h2>
<h4>Web Designer</h4>
<a href="#" target="_blank" class="download">Download CV</a>
</div>
</div>
<div class="about">
<h2>Alex Smith</h2>
<p>Web Designer</p>
</div>
</div>
<!-- Aktif Hover click -->
<script>
const newLocal = '.container';
let about = document.querySelector(newLocal);
about.addEventListener('click', function() {
newLocal.style.backgroundColor = 'blue';
});
</script>
</body>
</html>