-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
169 lines (150 loc) · 7.84 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
<!DOCTYPE html>
<!-- Web Profile AZAZ -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Profile Achmad Zahrul Ali Zadan</title>
<link rel="stylesheet" href="assets/styles/style.css">
<link rel="shortcut icon" type="image" href="assets/images/WebProfileLogo.png">
</head>
<body>
<header>
<nav>
<div class="logo">Web Profile AZAZ</div>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#aboutme">About Me</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#hobby">Hobby</a></li>
<li><a href="#profilecard">Profile Card</a></li>
</ul>
</nav>
</header>
<main>
<div id="content">
<script src="assets/slider.js"></script>
<div id="slide">
<img name="slider" class="slider" alt="slider">
</div>
<!-- Home -->
<div id="home">
<h1>Welcome to My Web Profile! ^^</h1>
</div>
<!-- About Me -->
<div id="aboutme">
<article id="about-me">
<h1>About Me</h1>
<p>
Hello, my name is <b>Achmad Zahrul Ali Zadan</b>, you can call me <b>"Arul"</b>.
Right now, I am currently studying at <b>Universitas Pembangunan Nasional Veteran Jawa Timur</b> (6th semester).
The Study Program that I took was <b>Informatics</b> at the <b>Faculty of Computer Science</b>.
I have an interest in learning things that related to <i>Web Development</i>.
</p>
</article>
</div>
<!-- Education -->
<div id="education">
<h1>Education</h1>
<div class="element-container">
<article id="college-ed">
<div class="element-item">
<h2>College(2019-now)</h2>
<img src="assets/images/logoUPNVeteranJatim.png" class="element" alt="College">
</div>
</article>
<article id="seniorhighschool-ed">
<div class="element-item">
<h2>Senior High School(2015-2018)</h2>
<img src="assets/images/logoSMAN16Surabaya.png" class="element" alt="SeniorHighSchool">
</div>
</article>
<article id="juniorhighschool-ed">
<div class="element-item">
<h2>Junior High School(2012-2015)</h2>
<img src="assets/images/logoSMPN19Surabaya.png" class="element" alt="JuniorHighSchool">
</div>
</article>
<article id="primaryschool-ed">
<div class="element-item">
<h2>Primary School(2006-2012)</h2>
<img src="assets/images/logoSDIslamJiwaNala.png" class="element" alt="PrimarySchool">
</div>
</article>
</div>
</div>
<!-- Hobby -->
<div id="hobby">
<h1>Hobby</h1>
<div class="element-container">
<article id="gaming-hob">
<div class="element-item">
<h2>Gaming</h2>
<img src="assets/images/gaming.png" class="element" alt="Gaming">
<p>
Sometimes, when i have a spare time, I usually spend my time for playing games.
By playing games I can release fatigue after doing activities, learn to solve problems (such as puzzles), etc
</p>
</div>
</article>
<article id="discussion-hob">
<div class="element-item">
<h2>Discussion</h2>
<img src="assets/images/discussion.png" class="element" alt="Discussion">
<p>
Discussion is a process of exchanging ideas and sharing understanding to find out the cause of a problem and the solution.
In the discussion, of course, I also got experience to respect other people's opinions, maintain the manners of talking with other people, and get new relationships
</p>
</div>
</article>
<article id="learnsomethingnew-hob">
<div class="element-item">
<h2>Learn Something New</h2>
<img src="assets/images/learnsomethingnew.png" class="element" alt="Learnsomethingnew">
<p>
Learning something new is my hobby and a step to develop my horizons.
By learning something new can make me adapt to the current world conditions
</p>
</div>
</article>
</div>
</div>
</div>
<!-- Aside for profile card -->
<aside>
<div id="profilecard">
<header>
<h1>Profile Card</h1>
<figure>
<img src="assets/images/profilecardazaz.jpg" class="profile" alt="profilecardazaz">
</figure>
</header>
<section>
<h3>Other Information</h3>
<table>
<tr>
<th>Name</th>
<td>Achmad Zahrul Ali Zadan</td>
</tr>
<tr>
<th>Call name</th>
<td>Arul</td>
</tr>
<tr>
<th>Linkedin</th>
<td><a href="https://www.linkedin.com/in/achmadzahrulalizadan/">Linkedin link</a></td>
</tr>
<tr>
<th>Github</th>
<td><a href="https://github.com/AchmadZahrulAZ">Github link</a></td>
</tr>
</table>
</section>
</div>
</aside>
</main>
<footer>
Web Profile AZAZ © 2022, Dicoding Academy
</footer>
</body>
</html>