-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
189 lines (182 loc) ยท 6.12 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<!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" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Share:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/index.css" />
<title>Agung Nur Ramadhan's Website</title>
</head>
<body>
<!-- navigation bar -->
<nav>
<div class="nav-item-left">
<div class="nav-item nav-logo">
<a class="nav-link" href="/"> Agung Nur Ramadhan </a>
</div>
</div>
<div class="nav-item-right">
<div class="nav-item">
<a class="nav-link" href="/about/">About Me</a>
</div>
<div class="nav-item">
<a class="nav-link" href="/projects/">Projects</a>
</div>
<div class="nav-item contact-button">
<a class="nav-link" href="/contact/">Contact</a>
</div>
</div>
</nav>
<!-- main content -->
<main>
<!-- introduction section -->
<section class="intro-section">
<div class="intro-item">
<img
class="profile-image"
src="./assets/images/profile-image.jpg"
alt="profile image"
/>
</div>
<div class="intro-description">
<h1>Hai! ๐</h1>
<p>
My Name is Agung and I'm an Aircraft Engine Maintenance Technician
โ๏ธ. Currently I'm a student at bootcamp for Front End Developer at
<a href="https://catamyst.codepolitan.com">
Codepolitan X Catamyst
</a>
๐บ
</p>
<p>
I Really loves technology, especially about gadgets and computer
stuff ๐ฅ๏ธ
</p>
</div>
</section>
<!-- Tools and language section -->
<section class="tools-section">
<div>
<h2>Tools ๐ ๏ธ</h2>
<p>
As an early stage front end developer, there are a lot of things
that I should learn and try. From designing the UI and then coding
it to make it real. These are few tools that I use for making a
website.
</p>
</div>
<ul class="tools-container">
<li>
<img
class="tools-icon"
src="assets/icons/html-icon.svg"
alt="html icon"
/>
</li>
<li>
<img
class="tools-icon"
src="assets/icons/css-icon.svg"
alt="css icon"
/>
</li>
<li>
<img
class="tools-icon"
src="assets/icons/vscode-icon.svg"
alt="vscode icon"
/>
</li>
<li>
<img
class="tools-icon"
src="assets/icons/figma-icon.svg"
alt="figma icon"
/>
</li>
</ul>
</section>
<!-- projects showcase section -->
<section class="project-section">
<div>
<h2>Projects ๐ฅ๏ธ</h2>
<p>
This section is for showing my projects, but currently is still
empty ๐
, but it will updated soon!
</p>
</div>
<!-- card showcase -->
<div class="card-container">
<div class="card-item">
<img
class="card-image"
src="assets/images/dummy-project-image.jpg"
alt="dummy project image"
/>
<div class="card-panel">
<h3 class="card-project-title">Project Title</h3>
<p class="card-project-description">
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Similique consequatur nesciunt veritatis iure accusantium? Omnis
ipsam, porro quasi illo, qui officia pariatur, aut fugit illum
dolore fugiat aperiam quae tempore.
</p>
</div>
</div>
<div class="card-item">
<img
class="card-image"
src="assets/images/dummy-project-image.jpg"
alt="dummy project image"
/>
<div class="card-panel">
<h3 class="card-project-title">Project Title</h3>
<p class="card-project-description">
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Similique consequatur nesciunt veritatis iure accusantium? Omnis
ipsam, porro quasi illo, qui officia pariatur, aut fugit illum
dolore fugiat aperiam quae tempore.
</p>
</div>
</div>
<div class="card-item">
<img
class="card-image"
src="assets/images/dummy-project-image.jpg"
alt="dummy project image"
/>
<div class="card-panel">
<h3 class="card-project-title">Project Title</h3>
<p class="card-project-description">
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Similique consequatur nesciunt veritatis iure accusantium? Omnis
ipsam, porro quasi illo, qui officia pariatur, aut fugit illum
dolore fugiat aperiam quae tempore.
</p>
</div>
</div>
</div>
<a href="/projects/" class="show-more-button">Show More!</a>
</section>
<!-- contact me section -->
<section class="contact-section">
<h2>Contact Me ๐จ</h2>
<p>
Do you have any question or just want to say hello or any formal
occasion. Head into <a href="/contact/">contact page</a> for more
information.
</p>
</section>
<!-- Footer -->
<footer>
<p class="footer-section">Website built with โ in Indonesia ๐ฎ๐ฉ</p>
</footer>
</main>
</body>
</html>