-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.html
More file actions
135 lines (100 loc) · 5.01 KB
/
About.html
File metadata and controls
135 lines (100 loc) · 5.01 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects</title>
<link rel="stylesheet" href="Stylework.css">
<script src="https://kit.fontawesome.com/da4063c01e.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
</head>
<body>
<div class="wrapper">
<div class="navbar">
<header class="header">
<a href="index.html"> <img src="/assets/Home-images/SiteLogo.png" alt="Parth" class="logo"></a>
<nav class="navbar">
<a href="index.html" class="nav-link">Home</a>
<a href="Work.html" class="nav-link">Work</a>
<a href="About.html" class="nav-link">About</a>
<a href="Contact.html" class="nav-link">Contact</a>
</header>
<div class="mainBox">
<div class="pic-box"></div>
<div class="box">
<div class="textBox">
<h3>Thanks for stopping by -</h3>
</div>
<div class="textBox1">
<p>
I'm Parth, currently in Pune, who loves to see good design which brings people together. Currently I'm studying Communication Design, specializing in UI/UX at Symbiosis Institute Of Design. I do freelance work and video editing. I also have experience doing graphic & brand design for small startups in Mumbai
</p>
<br>
<p>
When I'm not designing, you'll probably catch me listening music or playing video games.</p>
<p> (Currently I’m playing <span class="underline1"><a href="https://www.kojimaproductions.jp/en/death-stranding-ps4">Death Stranding)</a></span>
</p>
<br>
<p>If you just want to say hello, feel free to reach out to me!</p>
</div>
<br>
<br>
<div class="textBox2">
<ul type="none">
<li><a href="Contact.html" ><i class="fa-sharp fa-solid fa-arrow-up fa-rotate-by" style="--fa-rotate-angle: 45deg;"></i> Contact form</a></li>
<li><a href="https://www.linkedin.com/in/parth-n-805691213?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app" ><i class="fa-sharp fa-solid fa-arrow-up fa-rotate-by" style="--fa-rotate-angle: 45deg;"></i> Linkedin</a></li>
<li><a href="https://www.instagram.com/parnive_?igsh=MWZ0OHR3eXdvYXNoMw==" ><i class="fa-sharp fa-solid fa-arrow-up fa-rotate-by" style="--fa-rotate-angle: 45deg;"></i> Instagram</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="footerNav">
<nav class="navbar-down">
<a href="index.html" class="nav-link">Home</a>
<a href="Work.html" class="nav-link">Work</a>
<a href="About.html" class="nav-link">About</a>
<a href="Contact.html" class="nav-link">Contact</a>
</nav>
</div>
<div class="content1">
<h2>You’ve hit the footer, thanks for stopping by.
</h2>
<p><a href="Contact.html">Still Curious?</a>
</p>
</div>
<div class="email">
<a href="mailto:parthninave08@gmail.com">parthninave08@gmail.com</a>
</div>
<div class="icons">
<a href="https://www.instagram.com/parnive_?igsh=MWZ0OHR3eXdvYXNoMw==" target="_blank">
<i class="fab fa-instagram fa-lg"></i>
</a>
<a href="https://www.linkedin.com/in/parth-n-805691213?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app" target="_blank">
<a href="https://www.linkedin.com/in/parth-n-805691213?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app" target="_blank">
<i class="fab fa-linkedin fa-xl"></i>
</a>
</a>
</div>
</div>
</div>
<script>
// Get the current page URL
var currentPageUrl = window.location.href;
// Get all navigation links
var navLinks = document.querySelectorAll('.navbar .nav-link');
// Loop through each navigation link
navLinks.forEach(function(link) {
// Check if the link's href matches the current page URL
if (link.href === currentPageUrl) {
// Add the 'active' class to the link
link.classList.add('active');
}
});
</script>
</body>
</html>