-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (103 loc) · 4.81 KB
/
index.html
File metadata and controls
104 lines (103 loc) · 4.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header class="header">
<a href="#" class="logo">Nachiket</a>
<i class="fa-solid fa-bars"></i>
<nav class="navbar">
<a href="#home" class="active">Home</a>
<a href="#about">About</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section class="home" id="home">
<div class="home-img">
<img src="img_coding.png" alt="">
</div>
<div class="home-content">
<div class="typing-container">
<h1 class="typing-text">Hi, I'm <span>Nachiket Amlekar</span></h1>
</div>
<div class="social-icon">
<a href="#"><i class="fa-brands fa-linkedin"></i></a>
<a href="#"><i class="fa-brands fa-github"></i></a>
<a href="#"><i class="fa-brands fa-instagram"></i></a>
<a href="#"><i class="fa-solid fa-square-envelope"></i></a>
</div>
</div>
</section>
<section class="about" id="about">
<h2 class="heading">About Me</h2>
<div class="my-img">
<img src="my-img.png" alt="">
</div>
<div class="about-container">
<div class="box">
<div class="info">
<p>Hi, I'm Nachiket Amlekar. I'm a first year undergrad studying Computer Science with Data Science at Newton School of Technology. I'm passionate about coding and learning new things.</p>
</div>
</div>
<div class="box">
<div class="info">
<h3>Skills</h3>
<div class="skill-icons">
<a href="#" data-tooltip="Python"><i class="fa-brands fa-python"></i></a>
<a href="#" data-tooltip="HTML5"><i class="fa-brands fa-html5"></i></a>
<a href="#" data-tooltip="CSS3"><i class="fa-brands fa-css3-alt"></i></a>
<a href="#" data-tooltip="JavaScript"><i class="fa-brands fa-js"></i></a>
<a href="#" data-tooltip="Git"><i class="fa-brands fa-git-alt"></i></a>
<a href="#" data-tooltip="GitHub"><i class="fa-brands fa-github"></i></a>
<a href="#" data-tooltip="Figma"><i class="fa-brands fa-figma"></i></a>
<a href="#" data-tooltip="Vercel"><img src="https://vercel.com/favicon.ico" alt="Vercel" width="30" height="30"></a>
</div>
</div>
</div>
</div>
</section>
<section class="portfolio" id="portfolio">
<h2 class="heading">Portfolio</h2>
<div class="slider-container">
<div class="slider">
<div class="slide active">
<a href="https://github.com/nachiket7-dev/Youtube_Clone" target="_blank">
<img src="project1.png" alt="Project 1">
<div class="text-overlay">
<h3>Youtube_Clone</h3>
<p>Basic Youtube Clone using HTML, CSS, JavaScript</p>
</div>
</a>
</div>
<div class="slide">
<a href="https://github.com/nachiket7-dev/Tic-Tac-Toe-MiniGame" target="_blank">
<img src="project2.png" alt="Project 2">
<div class="text-overlay">
<h3>Tic-Tac-Toe-MiniGame</h3>
<p>Tic-Tac-Toe game made using HTML, CSS, and JavaScript</p>
</div>
</a>
</div>
<div class="slide">
<a href="https://github.com/nachiket7-dev/Amazon_Clone" target="_blank">
<img src="project3.png" alt="Project 3">
<div class="text-overlay">
<h3>Amazon Clone</h3>
<p>Basic Amazon Clone using HTML, CSS</p>
</div>
</a>
</div>
</div>
<button class="prev" onclick="moveSlide(-1)">❮</button>
<button class="next" onclick="moveSlide(1)">❯</button>
</div>
</section>
<script src="script.js"></script>
</body>
</html>