-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
162 lines (156 loc) · 4.79 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
<!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="stylesheet" href="index.css" />
<script
src="https://kit.fontawesome.com/7e23189802.js"
crossorigin="anonymous"
></script>
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap");
</style>
<title>Rofiq Ahmad Mubarok</title>
</head>
<body>
<header id="header">
<nav class="navigation">
<ul class="menu">
<div class="logo">
<img src="img/logo.png" alt="logo" /><a href="/"></a>
</div>
<li class="nav-project"><a href="project/index.html">Project</a></li>
<li class="nav-contact"><a href="#contact">Contact</a></li>
<li class="nav-tools"><a href="#tools">Tools</a></li>
<li class="nav-profile"><a href="#profile">Profile</a></li>
<li class="nav-github"><i class="fa-brands fa-github"></i></li>
<li class="nav-search">
<i class="fa-solid fa-magnifying-glass"></i>
</li>
</ul>
</nav>
</header>
<main id="main" class="main">
<section id="hello" class="hello">
<h1 class="main-title">
Hello!<br />
I'm Rofiq
</h1>
</section>
<section id="profile" class="profile">
<div>
<div>
<h2>Profile</h2>
<h3>Rofiq Ahmad Mubarok</h3>
<h4>Frontend Developer</h4>
<h4>UI/UX Design</h4>
</div>
<div class="profile-intro">
<p>
Hello, my name is Rofiq Ahmad Mubarok, you can call me
<span class="name">Rofiq</span> I’m a Frontend Web Developer and
UI/UX Designer. let's learn design with me, design is fun.
</p>
<img
class="profile-picture"
src="/img/profile.jpg"
alt="profile picture"
width="300"
height="300"
/>
</div>
</div>
</section>
<section id="tools" class="tools">
<div>
<h2>Tools</h2>
<ul class="tool-items">
<li>
<img src="img/tools-icon/html-icon.svg" alt="html" />
<span>HTML</span>
</li>
<li>
<img src="img/tools-icon/css-icon.svg" alt="css" />
<span>CSS</span>
</li>
<li>
<img
src="/img/tools-icon/javascript-programming-language-icon.svg"
alt="javascript"
/>
<span>JAVASCRIPT</span>
</li>
<li>
<img src="/img/tools-icon/blender-icon.svg" alt="blender" />
<span>BLENDER </span>
</li>
<li>
<img
src="/img/tools-icon/unity-game-engine-icon.svg"
alt="unity"
/>
<span>UNITY</span>
</li>
<li>
<img
src="/img/tools-icon/adobe-illustrator-icon.svg"
alt="adobe illustrator"
/>
<span>ADOBE ILLUSTRATOR</span>
</li>
<li>
<img src="/img/tools-icon/figma-icon.svg" alt="figma" />
<span>FIGMA</span>
</li>
<li>
<img
src="/img/tools-icon/visual-studio-code-icon.svg"
alt="vscode"
/>
<span>VSCODE</span>
</li>
</ul>
</div>
</section>
<section id="contact" class="contact">
<div>
<h2>
Contact me if <span class="text-contact">you need</span> need my
help!
</h2>
<ul class="social-media">
<li>
<img
src="/img/sosmed-icon/ig-instagram-icon.svg"
alt="Instagram"
/>
</li>
<li>
<img
src="/img/sosmed-icon/linkedin-app-icon.svg"
alt="LinkedIn"
/>
</li>
<li><img src="/img/sosmed-icon/gmail-icon.svg" alt="gmail" /></li>
<li>
<img src="/img/sosmed-icon/twitter-app-icon.svg" alt="Twitter" />
</li>
<li>
<img
src="/img/sosmed-icon/facebook-round-color-icon.svg"
alt="Facebook"
/>
</li>
</ul>
</div>
</section>
</main>
<footer id="footer">
<p class="copyright">
Copyright © 2022 Created by Rofiq Ahmad Mubarok
</p>
</footer>
</body>
</html>