Skip to content
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
8 changes: 8 additions & 0 deletions .vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"ExpandedNodes": [
"",
"\\Kutub website factory"
],
"SelectedNode": "\\Kutub website factory\\programming.jpg",
"PreviewInSolutionExplorer": false
}
Binary file added .vs/slnx.sqlite
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file added .vs/ttp_cohort_4_application/v17/.wsuo
Binary file not shown.
Binary file added Kutub website factory/PROJECT.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions Kutub website factory/Script1.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@

let menuIcon= document.querySelector ('#menu-icon');
let menuIcon= document.querySelector ('.navbar');

menuIcon.onclcik = () => {
menuIcon.classlist.toggle('bx-x');
navbar.classlist.toggle('active');
}


let section = document. querySelector All('section');
let navlink = document. querySelector All('header nav a ');


window.onscroll=() => {
section.forEach(sec=>{
let top =window.scrolly;
let offset= sec.offsetTop - 150;
let height= sec.offsetHeight;
let id = sec.getAttribute('id');

if (top >= offset && top< offset + height ){
navlink.forEach(links =>{
links.classlist.remove('active');
document.querySelector('header nav a [href*='+ id +']').classlist.add('active')

});
};

});

let header = document.querySelector('header');

header.classlist.toggle('sticky', window.scrolly> 100);
};
Binary file added Kutub website factory/back.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Kutub website factory/back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
110 changes: 110 additions & 0 deletions Kutub website factory/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
<!DOCTYPE html>

<html>

<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-..." crossorigin="anonymous" />

<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>

<link rel="stylesheet" href="style.css">

</head>

<body>

,<header class="header">
<a href="#" class="logo">portfolio</a>

<i class='bx bx-menu' id="menu-icon"></i>

<nav class="navbar">
<a href="#home"class="active">Home</a>
<a href="#about">About</a>
<a href="#project">Project</a>
<a href="#contact">Contact</a>
</nav>
</header>

<section class= "home" id="home">
<div class="home-content">
<h3> Hello, it's me </h3>
<h1> KUTUB UDDIN </h1>


<h3>I'm a <span> Software developer and Cybersecurity Engineer </h3>

<div class="social-media">
<a href="https://github.com/kutub23"><i class='bx bxl-github' ></i></a>
<a href="#"><i class='bx bxl-instagram-alt' ></i></a>
<a href="#"><i class='bx bxl-linkedin' ></i></a>

</div>

</div>
<div class="home-image">
<img src="photooutput.png"alt="">
</div>
</section>

<section class="about" id="about">

</div>

<div class="about-content">
<h2 class="heading"> About,<span> Me</span></h2>
<h3> Sofware Developer and Cybersecurity Engineer</h3>
<p> Im currently a student at JOHN JAY pursing degree in computer science and infromation security.
Im very passion about Software development and Cybersecurity, Always seeking to expand my knowledge and skill.
i enjoy coding and find satisfaction in turing complex concepts into practical appilcation.
Also learning and studying different security framework and practices. </p>

</div>

</section>

<section class="project " id="project">
<h2 class="heading"> My <span> Project</span></h2>
<div class="project-image">
<img src="PROJECT.png"alt="">
</div>

<div class="project-container">
<div class="project-box">
<h3>Data Base</h3>
<p> In this diagram showing data modeling is the process of creating a conceptual, logical, and physical representation of data structures and their relationships within a system. It involves identifying the entities (objects), attributes, and relationships between them to define the structure of the data. </p>

</section>
<div id="contact">
<div class="container">
<div class="row">
<div class="contact-left">
<h1 class="sub-title">Contact Me</h1>
<p><i class="fas fa-envelope"></i> kutub0623@gmail.com</p>

</div>
</div>
</div>
</div>
<div class="contact-right">
<form name="submit-to-google-sheet">
<input type="text" name="Name" placeholder="Your Name" required />
<input type="email" name="Email" placeholder="Your Email" required />
<textarea name="Message" rows="6" placeholder="Enter Your Message Please"></textarea>
<button type="submit" class="btn btn2">Submit</button>
</form>
<span id="msg">

</span>

<footer class="footer">
<div class="footer-text">
<p> Copyright &copy; 2023 by UDDIN | All Right Reserved.</p>
</div>

<footer>

<script src="Script1.js"></script>
</body>

</html>
Binary file added Kutub website factory/linux.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Kutub website factory/network.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Kutub website factory/photooutput.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Kutub website factory/programming.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Kutub website factory/security.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading