-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworks.html
More file actions
54 lines (50 loc) · 1.63 KB
/
works.html
File metadata and controls
54 lines (50 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Works</title>
<link rel="stylesheet" href="css/main.css" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Roboto:wght@500;900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="works.html">Works</a></li>
<li><a href="hobby.html">Hobby</a></li>
<li><a href="https://angga.pw/" target="_blank">My Website</a></li>
</ul>
</div>
<div class="contentWorks">
<div class="card">
<img src="images/work1.webp" style="width: 100%; height: 300px;" />
<div class="container">
<h1 style="text-align: center;">WEB DEVELOPER</h1>
</div>
</div>
<div class="card">
<img src="images/work2.webp" style="width: 100%; height: 300px;" />
<div class="container">
<h1 style="text-align: center;">UI/UX</h1>
</div>
</div>
<div class="card">
<img src="images/work3.webp" style="width: 100%; height: 300px;" />
<div class="container">
<h1 style="text-align: center;">DEVOPS</h1>
</div>
</div>
<div class="card">
<img src="images/work4.webp" style="width: 100%; height: 300px;" />
<div class="container">
<h1 style="text-align: center;">ARTIFICIAL INTELLIGENCE</h1>
</div>
</div>
</div>
</body>
</html>