-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
133 lines (123 loc) · 5.54 KB
/
index.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LitFill's Portfolio</title>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
font-family: Arial, sans-serif;
background-color: #f5f5f5;
padding: 20px;
}
.container {
max-width: 800px;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
font-size: 32px;
margin-bottom: 30px;
}
.project {
margin-bottom: 40px;
}
.project-title {
font-size: 24px;
font-weight: bold;
color: #333;
margin-bottom: 10px;
}
.project-description {
margin-bottom: 20px;
color: #666;
}
.project-link {
display: flex;
align-items: center;
color: #1a73e8;
margin-bottom: 10px;
text-decoration: none;
transition: color 0.3s ease;
}
.project-link:hover {
color: #0d47a1;
}
.project-icon {
margin-right: 10px;
width: 20px;
height: 20px;
}
footer {
margin-top: 30px;
text-align: center;
font-size: 12px;
color: #666;
}
footer a {
color: #666;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<h1>LitFill's Portfolio</h1>
<div class="project">
<h2 class="project-title">Stopwatch App</h2>
<p class="project-description">A simple stopwatch application.</p>
<a class="project-link" href="https://litfill.github.io/stopwatch">
<img class="project-icon" src="stopwatch-icon.png" alt="Stopwatch Icon"> View Project </a>
<a class="project-link" href="https://github.com/LitFill/stopwatch">
<img class="project-icon" src="github-icon.png" alt="GitHub Icon"> GitHub Repository </a>
</div>
<div class="project">
<h2 class="project-title">Kertas Batu Gunting</h2>
<p class="project-description">A web-based game of Rock, Paper, Scissors.</p>
<a class="project-link" href="https://litfill.github.io/KertasBatuGunting">
<img class="project-icon" src="RPS-icon.png" alt="Game Icon"> View Project </a>
<a class="project-link" href="https://github.com/LitFill/KertasBatuGunting">
<img class="project-icon" src="github-icon.png" alt="GitHub Icon"> GitHub Repository </a>
</div>
<div class="project">
<h2 class="project-title">Yasin 41</h2>
<p class="project-description">Aplikasi web-based untuk menghitung jumlah bacaan Yasin Taujihat yang dibaca sebanyak 41 kali, dihitung berdasarkan jumlah pembaca, pembagian dihitung seadil mungkin.</p>
<a class="project-link" href="https://litfill.github.io/yasin41">
<img class="project-icon" src="41-icon.png" alt="Yasin 41 Icon"> View Project </a>
<a class="project-link" href="https://github.com/LitFill/yasin41">
<img class="project-icon" src="github-icon.png" alt="GitHub Icon"> GitHub Repository </a>
</div>
<div class="project">
<h2 class="project-title">Tic Tac Toe</h2>
<p class="project-description">A web-based game of tic tac toe.</p>
<a class="project-link" href="https://litfill.github.io/tic-tac-toe">
<img class="project-icon" src="TTT-icon.png" alt="Game Icon"> View Project </a>
<a class="project-link" href="https://github.com/LitFill/tic-tac-toe">
<img class="project-icon" src="github-icon.png" alt="GitHub Icon"> GitHub Repository </a>
</div>
</div>
<footer>
<p> Hak Cipta © 2023 Rozy corp. </p>
<p>
<a href="https://www.flaticon.com/free-icons/timer" title="timer icons">Timer icons created by Freepik - Flaticon</a>
<br>
<a href="https://www.flaticon.com/free-icons/github" title="github icons">Github icons created by Pixel perfect - Flaticon</a>
<br>
<a href="https://www.flaticon.com/free-icons/rock-paper-scissors" title="rock paper scissors icons">Rock paper scissors icons created by Freepik - Flaticon</a>
<br>
<a href="https://www.flaticon.com/free-icons/tic-tac-toe" title="tic tac toe icons">Tic tac toe icons created by Peter Lakenbrink - Flaticon</a>
<br>
<a href="https://www.freepik.com/icon/forty-one_8921671#position=7&page=1&term=41&fromView=search">Icon by Fathema Khanom</a>
</p>
</footer>
</body>
</html>