Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Leher_Kachhyap_2102081055 #105

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
156 changes: 156 additions & 0 deletions task_webDev/Leher_Kachhyap_2102081055/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
<!DOCTYPE html>
<html lang="en">
<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="style.css">
<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=Roboto+Mono:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<title>Document</title>
</head>
<body>

<!-- splash screen -->
<div class="splash">
<img src="signature logo.png" alt="" class="fadeIn">
</div>

<!-- header navigation bar -->
<header>
<nav class="navbar">
<div>
<img src="signature logo.png" alt="" id="logo" class="logo">
</div>
<div class="nav_buttons">
<div class="nav_toggle" id="nav-toggle">
<i class="uil uil-bars"></i>
</div>
</div>
<div class="nav_menu" id="nav-menu">
<ul class="nav_list">
<li class="nav_item">
<a href="#home" class="nav_link">Home</a>
</li>
<li class="nav_item">
<a href="#about" class="nav_link">About</a>
</li>
<li class="nav_item">
<a href="#skills" class="nav_link">Skills</a>
</li>
<li class="nav_item">
<a href="#contact" class="nav_link">Contact</a>
</li>
</ul>
<i class="uil uil-times nav_close" id="nav-close"></i>
</div>
</nav>
</header>

<!-- home section -->
<section class="home" id="home">
<div class="content">
<h1><span></span></h1>
<h3>I'm <mark>Leher Kumar Kachhyap</mark> and I am a web developer </h3>
<div class="social">
<div class="social_buttons">
<a href="https://www.linkedin.com/in/leher-kachhyap-36a6ab239/" target="_blank">
<i class="uil uil-linkedin" ></i>
</a>
</div>
<div class="social_buttons">
<a href="https://github.com/LeherKachhyap" target="_blank">
<i class="uil uil-github" ></i>
</a>
</div>
</div>
</div>
</section>

<!-- about section -->
<section class="about" id="about">
<div class="content">
<div class="content_title">
<h2>About</h2>
</div>
<div class="sub_content">
<h3>Currently pursuing Bachelor of Technology in the field of Information and Technology from Veer Surrendra Sai University of Technology, Burla </h3>
</div>
<div class="about_images">
<img src="Logo_vssut.svg.png" alt="" class="png">
<h3 id="vssut">Veer Surrendra Sai University of Technology, Burla</h3>
<i class="uil uil-location-point" ></i>
<h3 id="location">Sambalpur - 768006</h3>
</div>
</div>
</section>

<!-- skils section -->
<section class="skills" id="skills">
<div class="content">
<div class="content_title">
<h2>Skills</h2>
</div>
<div class="sub_content_skills">
<div class="skill_logo">
<i class="uil uil-html5">Html</i>
</div>
<div class="skill_logo">
<i class="uil uil-css3-simple">CSS</i>
</div>
<div class="skill_logo">
<i class="uil uil-java-script">Javascript</i>
</div>
<div class="skill_logo">
<i class="uil uil-adobe">Illustrator</i>
</div>
<div class="skill_logo">
<i class="uil uil-adobe">Photoshop</i>
</div>
</div>
</div>
</section>

<!-- contact section -->
<section class="contact" id="contact">
<div class="content">
<div class="content_title">
<h2>Contact</h2>
</div>
<div class="myinfo">
<div class="info">
<i class="uil uil-envelope"></i>
<h3 id="gmail">leherkachhyap@gmail.com</h3>
</div>
<div class="info">
<i class="uil uil-phone"></i>
<h3 id="phone">9777464362</h3>
</div>
<div class="info">
<a href="https://www.linkedin.com/in/leher-kachhyap-36a6ab239/" target="_blank">
<i class="uil uil-linkedin" ></i>
</a>
</div>
<div class="info">
<a href="https://github.com/LeherKachhyap" target="_blank">
<i class="uil uil-github" ></i>
</a>
</div>
</div>
</div>
</section>

<!-- footer -->
<footer>
<div class="copyright">
<i class="uil uil-copyright"></i>
All copyright reserved made by Leher
</div>

</footer>

</body>
<script src="script.js"></script>
</html>
42 changes: 42 additions & 0 deletions task_webDev/Leher_Kachhyap_2102081055/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
// show or hide menu
const navMenu = document.getElementById("nav-menu"),
navToggle = document.getElementById('nav-toggle'),
navClose = document.getElementById('nav-close')

// show menu
if(navToggle){
navToggle.addEventListener('click', () =>{
navMenu.classList.add('show-menu')
})
}

// menu hide
if(navClose){
navClose.addEventListener('click', ()=>{
navMenu.classList.remove('show-menu')
})
}

// remove menu
const navLink = document.querySelectorAll('nav__link')

function linkAction(){
const navMenu = document.getElementById('nav-menu')
// When we click on each nav__link, we remove the show-menu class
navMenu.classList.remove('show-menu')
}
navLink.forEach(n => n.addEventListener('click', linkAction))

// navigation scroll
window.addEventListener("scroll",function(){
var header = document.querySelector("header");
header.classList.toggle("sticky",window.scrollY > 0);
})

// splash screen
const splash = document.querySelector('.splash');
document.addEventListener('DOMContentLoaded' , (e)=>{
setTimeout(()=>{
splash.classList.add('display-none');
},2000);
})
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading