-
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.
- Loading branch information
Showing
3 changed files
with
112 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<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"> | ||
<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> |
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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #faf6f6; | ||
margin: 0; | ||
padding: 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
min-height: 100vh; | ||
} | ||
|
||
.container { | ||
width: 90%; | ||
max-width: 600px; | ||
padding: 10px; | ||
margin-top: 10px; | ||
|
||
} | ||
|
||
.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; | ||
} | ||
|
||
.contact a { | ||
color: #007BFF; | ||
text-decoration: none; | ||
} | ||
|
||
.contact p { | ||
margin: 10px 0; | ||
} | ||
|
||
.section .projects { | ||
margin-top: 20px; | ||
padding: 20px; | ||
} |