-
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
50 changed files
with
587 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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,15 @@ | ||
const menuBar = document.querySelector(".menu-bar"); | ||
const menuNav = document.querySelector(".menu"); | ||
|
||
menuBar.addEventListener("click", () => { | ||
menuNav.classList.toggle("menu-active"); | ||
}); | ||
|
||
const navBar = document.querySelector(".navbar"); | ||
|
||
window.addEventListener("scroll", () => { | ||
console.log(window.scrollY); | ||
const windowPosition = window.scrollY > 0; | ||
navBar.classList.toggle("scrolling-active", windowPosition); | ||
menuNav.classList.remove("menu-active"); | ||
}); |
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,114 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" id="home"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
|
||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" | ||
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" | ||
crossorigin="anonymous" referrerpolicy="no-referrer" /> | ||
|
||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap" | ||
rel="stylesheet" /> | ||
|
||
<link rel="stylesheet" href="dist/css/style.css" /> | ||
<link rel="icon" href="assets/img/amochi.png"> | ||
<title>GHITHRIF APRILLIO RAKHMAN</title> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
<div class="navbar"> | ||
<div class="container"> | ||
<div class="box-navbar"> | ||
<div class="logo"> | ||
<h1>GHITHRIF APRILLIO RAKHMAN.</h1> | ||
</div> | ||
|
||
<i class="fa-solid fa-bars menu-bar"></i> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="hero"> | ||
<div class="container"> | ||
<div class="pantai" id="pantai"> | ||
<div class="container"> | ||
<div class="box-pantai"> | ||
<div class="box"> | ||
<img src="assets/img/alumochi.jpg" alt="" /> | ||
<h3>Amochi (Company Profile)</h3> | ||
<p>FULLSTACK -- HTML - CSS - JAVASCRIPT</p> | ||
</div> | ||
|
||
<div class="box"> | ||
<img src="assets/img/amakala.jpg" alt="" /> | ||
<h3>AMAKALA (e-commerce)</h3> | ||
<p>FULLSTACK -- LARAVEL</p> | ||
</div> | ||
<div class="box"> | ||
<img src="assets/img/OPRECMANLAN.jpg" alt="" /> | ||
<h3>APLIKASI PERBANKAN</h3> | ||
<p>FRONT-END -- CODEIGNITER</p> | ||
</div> | ||
<div class="box"> | ||
<img src="assets/img/ADIDES.jpg" alt="" /> | ||
<h3>ADIDES</h3> | ||
<p>FRONT-END -- LARAVEL</p> | ||
</div> | ||
<div class="box"> | ||
<img src="assets/img/wit.jpg" alt="" /> | ||
<h3>Aplikasi Inventoris WIT.ID (ON GOING)</h3> | ||
<p>FULLSTACK -- LARAVEL - API </p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<CENTER><H1>SKILLS</H1></CENTER> | ||
<div class="pantai"> | ||
<h4>HTML</h4> | ||
<div class="progress" role="progressbar" aria-label="Animated striped example" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"> | ||
<div class="progress-bar progress-bar-striped progress-bar-animated" style="width: 95%"></div> | ||
</div> | ||
</div> | ||
<div class="pantai"> | ||
<h4>SQL</h4> | ||
<div class="progress" role="progressbar" aria-label="Animated striped example" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"> | ||
<div class="progress-bar progress-bar-striped progress-bar-animated" style="width: 80%"></div> | ||
</div> | ||
</div> | ||
<div class="pantai"> | ||
<h4>Laravel</h4> | ||
<div class="progress" role="progressbar" aria-label="Animated striped example" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"> | ||
<div class="progress-bar progress-bar-striped progress-bar-animated" style="width: 80%"></div> | ||
</div> | ||
</div> | ||
<div class="pantai"> | ||
<h4>CSS</h4> | ||
<div class="progress" role="progressbar" aria-label="Animated striped example" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"> | ||
<div class="progress-bar progress-bar-striped progress-bar-animated" style="width: 60%"></div> | ||
</div> | ||
</div> | ||
<br> | ||
<div class="pantai"> | ||
<h4>Javascript</h4> | ||
<div class="progress" role="progressbar" aria-label="Animated striped example" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"> | ||
<div class="progress-bar progress-bar-striped progress-bar-animated" style="width: 50%"></div> | ||
</div> | ||
</div> | ||
<br> | ||
|
||
</div> | ||
</header> | ||
|
||
|
||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script> | ||
<script src="dist/js/script.js"></script> | ||
</body> | ||
|
||
</html> |