-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
147 lines (116 loc) · 5.91 KB
/
index.html
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!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 href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
</head>
<body>
<header class="header">
<a href="#" class="logo">Portfolio</a>
<nav class="navbar">
<a href="#home" style="--i:1" class="active">Home</a>
<a href="#contact" style="--i:5">Contact</a>
</nav>
</header>
<section class="home" id="home">
<div class="home-content">
<h3>I'm, </h3>
<h1>Koushik Sarkar</h1>
<h3>And I'm a <span class="text"></span></h3><br />
<p>I'm a Full Stack Developer. <br />
A passionate C++ enthusiast with a knack for solving complex problems and optimizing performance. Always
eager to explore the latest advancements in the C++ ecosystem.
</p>
<div class="home-scl">
<a href="https://x.com/Koushik049" target="_blank"><i class='bx bxl-twitter'></i></a>
<a href="https://www.linkedin.com/in/koushik049/" target="_blank"><i class='bx bxl-linkedin'></i></a>
</div>
<a href="#" class="btn-box">More About Me</a>
</div>
<span class="home-imgHover"></span>
</section>
<section>
<div class="portfolio" id="project">
<div class="main-text" id="project">
<h2>Latest <span>Project</span></h2>
<div class="portfolio-content">
<div class="row">
<img src="./images/Project1.png">
<div class="layer">
<h5>Weather App</h5>
<p>The Weather Detection project is designed to
provide real-time weather information based
on user inputs such as location or city name.
It utilizes APIs (Application Programming Interfaces)
provided by weather services to fetch and display
current weather conditions and forecasts.
</p>
<a href="#"><i class='bx bx-link-external' style="color: aliceblue;"></i></a>
</div>
</div>
<div class="row">
<img src="./images/Project2.png">
<div class="layer">
<h5>To-Do List</h5>
<p>The To-Do List project is a web application designed
to help users organize and manage their tasks effectively.
This project utilizes HTML, CSS, and JavaScript to create
an interactive user interface for adding, editing, and
deleting tasks.
</p>
<a href="#"><i class='bx bx-link-external' style="color: aliceblue;"></i></a>
</div>
</div>
<div class="row">
<img src="./images/Project3.png">
<div class="layer">
<h5>Quiz App</h5>
<p>The Quiz App project is a web application designed to provide
users with an interactive quiz experience. This project utilizes
HTML, CSS, and JavaScript to create a dynamic user interface
for presenting questions, handling user responses, and
calculating scores.
</p>
<a href="#"><i class='bx bx-link-external' style="color: aliceblue;"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="contact" id="contact">
<div class="contact-text">
<h2>Contact <span>Me</span></h2>
<h4>Let's Work Together</h4>
<div class="contact-list">
<li><i class="far fa-envelope"></i> [email protected]</li>
</div>
<div class="contact-icons">
<a href="https://x.com/Koushik049" target="_blank"><i class='bx bxl-twitter'></i></a>
<a href="https://www.linkedin.com/in/koushik049/" target="_blank"><i class='bx bxl-linkedin'></i></a>
</div>
</div>
<div class="contact-form">
<form action="">
<input type="text" placeholder="Enter Your Name" required>
<input type="email" placeholder="Enter Your Email" required>
<input type="" placeholder="Enter Your Subject">
<textarea name="" id="" cols="40" rows="10" placeholder="Enter Your Message" required></textarea>
<input type="submit" value="submit" class="send">
</form>
</div>
</section>
<div class="last-text">
<p>Ⓒ Developed By Koushik....</p>
</div>
<a href="#" class="top"><i class='bx bx-up-arrow-alt'></i></a>
<script src="main.js"></script>
</body>
</html>