-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
200 lines (177 loc) · 5.51 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
190
191
192
193
194
195
196
197
198
199
200
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Herliansyah - Full Stack Developer</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
:root {
--primary-color: #2563eb;
--secondary-color: #1e40af;
--text-color: #1f2937;
--light-bg: #f3f4f6;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
body {
line-height: 1.6;
color: var(--text-color);
}
.hero {
min-height: 100vh;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
display: flex;
align-items: center;
padding: 2rem;
}
.hero-content {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
.profile-img {
width: 200px;
height: 200px;
border-radius: 50%;
border: 4px solid white;
margin-bottom: 2rem;
}
h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
.tagline {
font-size: 1.5rem;
margin-bottom: 2rem;
}
.social-links {
display: flex;
justify-content: center;
gap: 1.5rem;
margin-bottom: 2rem;
}
.social-links a {
color: white;
font-size: 1.5rem;
transition: transform 0.3s;
}
.social-links a:hover {
transform: translateY(-5px);
}
.section {
padding: 5rem 2rem;
}
.section:nth-child(even) {
background-color: var(--light-bg);
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.skill-card {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
}
.contact-form {
max-width: 600px;
margin: 0 auto;
}
.form-group {
margin-bottom: 1.5rem;
}
input, textarea {
width: 100%;
padding: 0.8rem;
border: 1px solid #ddd;
border-radius: 5px;
}
button {
background: var(--primary-color);
color: white;
padding: 1rem 2rem;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background 0.3s;
}
button:hover {
background: var(--secondary-color);
}
</style>
</head>
<body>
<section class="hero">
<div class="hero-content">
<img src="profile.jpg" alt="Herliansyah" class="profile-img">
<h1>Herliansyah</h1>
<p class="tagline">Full Stack Web Developer & Go Developer</p>
<div class="social-links">
<a href="#"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fas fa-envelope"></i></a>
</div>
</div>
</section>
<section class="section">
<div class="container">
<h2>Tentang Saya</h2>
<p>Seorang Full Stack Developer yang berpengalaman dalam pengembangan web dan Go. Memiliki passion dalam menciptakan solusi teknologi yang inovatif dan efisien. Fokus pada pengembangan aplikasi yang scalable dan performa tinggi.</p>
</div>
</section>
<section class="section">
<div class="container">
<h2>Keahlian</h2>
<div class="skills-grid">
<div class="skill-card">
<i class="fas fa-code fa-3x"></i>
<h3>Backend Development</h3>
<p>Go, PHP, MySQL, PostgreSQL</p>
</div>
<div class="skill-card">
<i class="fas fa-laptop-code fa-3x"></i>
<h3>Frontend Development</h3>
<p>HTML, CSS, JavaScript, React</p>
</div>
<div class="skill-card">
<i class="fas fa-server fa-3x"></i>
<h3>DevOps</h3>
<p>Docker, Git, CI/CD</p>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<h2>Hubungi Saya</h2>
<div class="contact-form">
<div class="form-group">
<input type="text" placeholder="Nama">
</div>
<div class="form-group">
<input type="email" placeholder="Email">
</div>
<div class="form-group">
<textarea rows="5" placeholder="Pesan"></textarea>
</div>
<button type="submit">Kirim Pesan</button>
</div>
</div>
</section>
</body>
</html>