-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
89 lines (82 loc) · 2.88 KB
/
portfolio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="portfolio.css">
<script src="C:\Users\User\Desktop\Swatantra\portfolio.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" integrity="sha512-5Hs3dF2AEPkpNAR7UiOHba+lRSJNeM2ECkwxUIxC1Q/FLycGTbNapWXB4tP889k5T5Ju8fs4b1P5z/iB4nMfSQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<!-- Header Section -->
<header>
<nav>
<div class="logo"><img src="standard.gif" alt="X"></div>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section class="hero">
<h1>Welcome to My Portfolio</h1>
<p></p>
<a href="#projects" class="btn">View My Work</a>
</section>
<!-- About Section -->
<section id="about">
<h2>About Me</h2>
<p>Hello! I am Swatantra Yadav, an IT student with a passion for WEB3 and problem-solving.</p>
<p>Currently, Working on Solidity[Smart Contracts] and Deployment</p>
</section>
<!-- Projects Section -->
<section id="projects">
<h2>Projects</h2>
<div class="project-card">
<h3>Event Management Website</h3>
<p>A web platform to plan and manage events seamlessly.</p>
</div>
<div class="project-card">
<h3>BLOCKCHAIN</h3>
<p>A marketplace and wallet for NFTS and Tokens</p>
</div>
<div class="project-card">
<h3>Loading</h3>
<p>Working on this</p>
</div>
</section>
<!-- Skills Section -->
<section id="skills">
<h2>SKILLS</h2>
<ul class="skills-list">
<li>Solidity</li>
<li>JavaScript</li>
<li>Python</li>
<li>C Programming</li>
<li>CSS</li>
<li>HTML5</li>
<li>MySQL</li>
<li>Autodesk Inventor Pro</li>
</ul>
</section>
<!-- Contact Section -->
<section id="contact">
<h2>Contact</h2>
<form id="contact-form">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message" rows="5" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<!-- Footer -->
<footer>
<p>© 2024 Swatantra Yadav. All rights reserved.</p>
</footer>
<script src="portfolio.js"></script>
</body>
</html>