-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Perubahan Struktur Folder untuk pengumpulan tugas
- Loading branch information
Showing
3 changed files
with
94 additions
and
104 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="style.css"> | ||
<link href="https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css2?family=Anta&display=swap" rel="stylesheet"> | ||
<title>Praktikum 1</title> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Praktikum 1</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<img src="1.png" alt="gambar profile"> | ||
<h1> ABOUT ME</h1> | ||
<p>Mahasiswa Universitas Ahmad Dahlan, Prodi Sistem Informasi Fakultas Sains dan Teknologi Terapan</p> | ||
<div class="project"> | ||
<h2>PROJECT</h2> | ||
<ul> | ||
<li><a href="https://github.com/brotherzhafif/Disaster_Game">Kontribusi Disaster Game</a></li> | ||
<li><a href="https://github.com/yudha556/timate">Profile Tim Project</a></li> | ||
<li><a href='https://github.com/yudha556/PORTOFOLIO-PRIBADI'>My Portofolio</a></li> | ||
|
||
</ul> | ||
</div> | ||
<div class="contact"> | ||
<h2>CONTACT</h2> | ||
<p>email: [email protected]</p> | ||
<p><a href="https://www.linkedin.com/in/hendrian-yudha-pratama-021b2530b/">Linkedin: Hendrian Yudha Pratama</a></p> | ||
<p><a href="https://www.instagram.com/hendrian_yudhaa__/?hl=en">Instagram: hendrian_yudhaa__</a></p> | ||
</div> | ||
<div class="container"> | ||
<div class="profile"> | ||
<img src="2.png" alt="Profile Picture" class="profile-pic"> | ||
</div> | ||
<div class="section about-me"> | ||
<h2>About Me</h2> | ||
<p>Saya Hendrian Yudha Pratama dari Universitas Ahmad Dahlan Program Studi Sistem Informasi. Saya adalah mahasiswa angkatan 2023 yang sekarang sedang menjalani perkuliahan di semester 3.</p> | ||
</div> | ||
<div class="section projects"> | ||
<h2>Projects</h2> | ||
<ul> | ||
<li><a href="https://github.com/yudha556/Disaster_Game">Disaster_Game</a> - Berkontribusi dalam project Game.</li> | ||
<li><a href="https://github.com/yudha556/timate">Timate</a> - ini merupakan project tim atau profile tim.</li> | ||
</ul> | ||
</div> | ||
<div class="section contact"> | ||
<h2>Contact</h2> | ||
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p> | ||
<p>LinkedIn: <a href="#">Hendrian Yudha Pratama</a></p> | ||
<p>Instagram: <a href="https://www.instagram.com/hendrian_yudhaa__/?hl=en">hendrian_yudhaa__</a></p> | ||
</div> | ||
</div> | ||
</body> | ||
</html> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,89 +1,79 @@ | ||
* { | ||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #faf6f6; | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
background: linear-gradient(135deg, #0D47A1, #42A5F5); | ||
height: 100vh; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
font-family: Arial, sans-serif; | ||
overflow: auto; /* Allow scrolling if content overflows */ | ||
min-height: 100vh; | ||
} | ||
|
||
.container { | ||
background-color: linear-gradient(135deg, #0D47A1, #42A5F5); | ||
border-radius: 20px; | ||
width: 350px; | ||
padding: 20px; | ||
height: 600px; | ||
color: white; | ||
text-align: center; | ||
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3); | ||
overflow: hidden; | ||
box-shadow: -6px 7px 24px -5px rgba(0,0,0,0.75); | ||
-webkit-box-shadow: -6px 7px 24px -5px rgba(0,0,0,0.75); | ||
-moz-box-shadow: -6px 7px 24px -5px rgba(0,0,0,0.75); | ||
} | ||
|
||
img { | ||
width: 200px; | ||
border-radius: 15px; | ||
object-fit: cover; | ||
} | ||
|
||
h1 { | ||
margin-top: 20px; | ||
font-size: 25px; | ||
font-family: "Anta"; | ||
} | ||
|
||
p { | ||
.container { | ||
width: 90%; | ||
max-width: 600px; | ||
padding: 10px; | ||
margin-top: 10px; | ||
font-size: 15px; | ||
font-family: "Exo 2"; | ||
} | ||
|
||
.project, .contact { | ||
margin-top: 20px; | ||
font-family: "Anta"; | ||
font-size: 15px; | ||
} | ||
|
||
.project ul { | ||
list-style: none; | ||
margin-top: 10px; | ||
} | ||
|
||
.project li a { | ||
color: #ffffff; | ||
} | ||
|
||
.profile { | ||
text-align: center; | ||
} | ||
|
||
.profile-pic { | ||
width: 120px; | ||
height: 120px; | ||
border-radius: 50%; | ||
border: 3px solid #007BFF; | ||
} | ||
|
||
.section { | ||
background-color: #ffffff; | ||
padding: 20px; | ||
margin: 20px 0; | ||
border-radius: 10px; | ||
box-shadow: 0px 3px 22px -1px rgba(0,0,0,0.33); | ||
-webkit-box-shadow: 0px 3px 22px -1px rgba(0,0,0,0.33); | ||
-moz-box-shadow: 0px 3px 22px -1px rgba(0,0,0,0.33); | ||
} | ||
|
||
.section h2 { | ||
color: #007BFF; | ||
font-size: 1.5em; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.projects ul { | ||
list-style-type: none; | ||
padding: 0; | ||
} | ||
|
||
.projects li { | ||
font-weight: bold; | ||
padding: 15px; | ||
border-bottom: 1px solid #ddd; | ||
border-left: #007BFF 5px solid; | ||
border-radius: 4px; | ||
margin: 7px; | ||
background-color: #f1f1f1df; | ||
} | ||
|
||
.projects a { | ||
color: #007BFF; | ||
text-decoration: none; | ||
margin: 5px 0; | ||
} | ||
|
||
.project li a:hover { | ||
color: #ffeb3b; | ||
} | ||
|
||
|
||
.contact a { | ||
color: #f0f0f0; | ||
} | ||
|
||
.contact a { | ||
color: #007BFF; | ||
text-decoration: none; | ||
margin: 5px 0; | ||
} | ||
|
||
.contact h2 { | ||
margin-bottom: 10px; | ||
} | ||
|
||
.contact p { | ||
margin: 5px 0; | ||
font-family: "Exo 2"; | ||
} | ||
|
||
.contact a:hover { | ||
color: #ffeb3b; | ||
} | ||
} | ||
|
||
.contact p { | ||
margin: 10px 0; | ||
} | ||
|
||
.section .projects { | ||
margin-top: 20px; | ||
padding: 20px; | ||
} |