Tugas Study Case
Nama : Nuhito Atmoko
Mata Kuliah : Pemrograman Web (M)
NRP : 5053231002
Github : GitHub
Hasil : Hasil Akhir
Tampilan :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Supporteran FTEIC</title>
<link rel="stylesheet" href="style.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,
wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;
0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,
900&display=swap');
</style>
</head>
<body>
<div class="logo">
<img src="assets/logoz.png" width="300" height="130" alt="Logo">
</div>
<div class="event-card">
<h1>Supporter Pertandingan FTEIC</h1>
<p class="tanggal">Minggu, 10 November 2024, 19.00 WIB </p>
<p class="tempat">GOR Pertamina ITS </p>
<p class="deskripsi">
Nyalakan semangat, buat suasana makin seru!
<br>
Yuk, dukung tim futsal kita di pertandingan besok!
<br>
There is no WINNER without WE
</p>
<button class="hadir">Hadir</button>
</div>
</body>
</html>
CSS :
body {
font-family: "Poppins", sans-serif;
font-weight: 500;
font-style: normal;
margin: 0;
padding: 0;
background-image:url(assets/support.jpg);
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size: cover;
display:grid;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.logo {
margin-bottom: -100px;
margin-top: -100px;
}
.event-card{
margin-top: -150px;
background-color: rgb(0, 0, 0);
opacity: 95%;
padding: 40px;
border-radius: 30px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
color :aliceblue
}
.hadir {
font-family: "Poppins", sans-serif;
padding: 10px 20px;
font-weight: 500;
background-color: #f1ea34;
opacity: 100%;
border: none;
border-radius: 9px;
cursor: pointer;
font-size: 1rem;
color: black;
}
Komentar
Posting Komentar