-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
150 lines (137 loc) · 5.49 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
148
149
150
<!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="css/master.css">
</head>
<body>
<div class="head">
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#contact">Contact</a></li>
<button id="theme-toggle"><b>Change Theme </b></button>
</ul>
</nav>
</header>
<section id="home" class="intro">
<div class="profile-pic">
<img src="assets/myimgcs.jpg" alt="Profile Picture">
</div>
<h1> <span>Nikita Priya</span></h1>
<p class="Profile">I am a Enthusiast Web Developer with a solid understanding of HTML, CSS, JavaScript, PHP, MySQL, and basic experience with React.js/Node.js.</p>
<div class="buttons">
<button><a href="#contact">Get in Touch </a></button>
<button>Download CV</button>
</div>
</section>
</div>
<section id="experience-icons" class="experience-icons">
<h3>Experience With</h3>
<div class="icons">
<img src="assets/html.png" alt="HTML5">
<img src="assets/css.png" alt="CSS3">
<img src="assets/js.png" alt="JavaScript">
<img src="assets/react.png" alt="React">
</div>
</section>
<section id="projects" class="projects">
<h2>Projects</h2>
<div class="project-card">
<img src="assets/projects/html.jpg" alt="HTML Tutorial">
<h3>Power of HTML</h3>
<p>HTML Tutorial</p>
</div>
<div class="project-card">
<img src="assets/projects/css.png" alt="CSS Magic">
<h3>Unlock CSS Magic</h3>
<p>CSS Tutorial</p>
</div>
</section>
<section id="experience" class="experience">
<h2>Experience</h2>
<div class="experience-container">
<div class="experience-item">
<h3>Lead Software Engineer at Google</h3>
<p class="date">Oct 2020 - Present</p>
<p class="description">Lead a team building scalable cloud architecture and modern web apps.</p>
</div>
<div class="experience-item">
<h3>Junior Software Engineer at Apple</h3>
<p class="date">Jan 2017 - Dec 2019</p>
<p class="description">Lead a team building scalable cloud architecture and modern ios apps.</p>
</div>
<div class="experience-item">
<h3>Software Engineer at Meta</h3>
<p class="date">Jan 2015 - Oct 2017</p>
<p class="description">Lead a team building html, css architecture and modern web applications.</p>
</div>
</div>
</section>
<footer id="contact">
<h2>Get in Touch</h2>
<p>If you’d like to chat about a project or just say hello, feel free to drop a message!</p>
<div class="contact-container">
<!-- Contact Form -->
<form class="contact-form">
<div class="form-group">
<label for="name">Your Name</label>
<input type="text" id="name" placeholder="Enter your name" required>
</div>
<div class="form-group">
<label for="email">Your Email</label>
<input type="email" id="email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label for="message">Your Message</label>
<textarea id="message" rows="5" placeholder="Type your message here" required></textarea>
</div>
<button type="submit" class="submit-btn">Send Message</button>
</form>
<!-- Contact Information -->
<div class="contact-info">
<h3>Let's Connect</h3>
<p>Follow me on social media or drop me an email!</p>
<div class="social-links">
<a href="#" class="social-link">
<img src="assets/linkedin.png" alt="LinkedIn">
<span>LinkedIn</span>
</a>
<a href="#" class="social-link">
<img src="assets/github.png" alt="GitHub">
<span>GitHub</span>
</a>
<a href="#" class="social-link">
<img src="assets/twitter.png" alt="Twitter">
<span>Twitter</span>
</a>
</div>
<p>Email: <a href="nikitapriya8862@gmail.com">nikitapriya8862@gmail.com</a></p>
</div>
</div>
</footer>
<script>
const themeToggle = document.getElementById('theme-toggle');
const body = document.body;
themeToggle.addEventListener('click', () => {
body.classList.toggle('dark-theme');
// Save the theme preference in localStorage
if (body.classList.contains('dark-theme')) {
localStorage.setItem('theme', 'dark');
} else {
localStorage.setItem('theme', 'light');
}
});
// Load theme preference from localStorage
const savedTheme = localStorage.getItem('theme');
if (savedTheme === 'dark') {
body.classList.add('dark-theme');
}
</script>
</body>
</html>