PWEB (A) - Tugas Pertemuan 1
PWEB - Tugas Pertemuan 1
Nama : Ryan Abinugraha
NRP : 5025211178
Kelas : PWEB - A
Tahun : 2023
Tugas :
Membuat CV Menggunakan HTML only
HTML Script :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My CV</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
}
h1 {
margin: 0;
font-size: 36px;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
font-size: 24px;
}
p {
font-size: 18px;
line-height: 1.6;
}
ul {
list-style: none;
padding: 0;
}
ul li::before {
content: "\2022"; /* Bullet character */
color: #333;
display: inline-block;
width: 1em;
margin-left: -1em;
}
.section {
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>Ryan Abinugraha</h1>
<p>Informatics Engineering</p>
</header>
<div class="container">
<div class="section">
<h2>About Me</h2>
<p>I am a passionate web developer with a strong foundation in HTML, CSS, and JavaScript. I enjoy creating responsive and user-friendly websites.</p>
</div>
<div class="section">
<h2>Experience</h2>
<ul>
<li>Staff of Student Welfare at HMTC (2023 - Present)</li>
<li></li>
</ul>
</div>
<div class="section">
<h2>Education</h2>
<ul>
<li>Bachelor's Degree in Informatics Engineering, University of ITS (2021 - Present)</li>
</ul>
</div>
<div class="section">
<h2>Skills</h2>
<ul>
<li>HTML5 & CSS3</li>
<li>JavaScript</li>
<li>Responsive Web Design</li>
<li>Web Accessibility</li>
</ul>
</div>
</div>
</body>
</html>
Comments
Post a Comment