-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
executable file
·165 lines (163 loc) · 5.71 KB
/
contact.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Taranjeet Singh Bedi</title>
<link rel="stylesheet" href="styles/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="images/TartejBros-logos_white.png"
media="(prefers-color-scheme: dark)"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="images/TartejBros-logos_black.png"
media="(prefers-color-scheme: light)"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles/contact.css" />
</head>
<body>
<!-- header -->
<div class="Navbar">
<div class="leftnav">
<div class="sidebaropener" onclick="opentool()">
<div class="examples">
<button class="button-three" aria-controls="primary-navigation">
<svg
stroke="var(--button-color)"
fill="none"
class="hamburger"
viewBox="-10 -10 120 120"
width="100"
>
<path
class="line"
stroke-width="10"
stroke-linecap="round"
stroke-linejoin="round"
d="m 20 40 h 60 a 1 1 0 0 1 0 20 h -60 a 1 1 0 0 1 0 -40 h 30 v 70"
></path>
</svg>
</button>
</div>
</div>
<div class="home">
<a href="index.html"
><img src="images/home.png" alt="home" class="homeimg"
/></a>
</div>
</div>
<div class="rightnav" id="rightothers">
<div class="about"><a href="about.html">About Me</a></div>
<div class="projects"><a href="projects.html">Projects</a></div>
</div>
<div class="contact">
<a href="contact.html">
<button type="button">
<img src="images/phone.png" alt="phone" /> Contact
</button></a
>
</div>
</div>
<!-- header over -->
<!-- body -->
<div class="main">
<div class="sidebar" id="sidenav">
<div class="sidecontent" id="sidecontent">
<div class="sidewords" id="sidewords" style="margin-top: 20px">
<a href="about.html">About Me</a>
</div>
<div class="sidewords" id="sidewords">
<a href="experience.html">Experience</a>
</div>
<div class="sidewords" id="sidewords">
<a href="projects.html">Projects</a>
</div>
<hr style="width: 80%; justify-content: center" id="sidewords" />
<div class="sidewords" id="topcontent">
<a href="education.html">Education</a>
</div>
<div class="sidewords"><a href="courses.html">Courses</a></div>
<div class="sidewords"><a href="clubs.html">Student Clubs</a></div>
<hr style="width: 80%; justify-content: center" />
</div>
</div>
<div
class="mainright"
id="bodymain"
style="flex-wrap: nowrap; justify-content: center; margin-top: 20px"
>
<div class="rightlinks">
<div class="rightlink">
<img
src="images/gmail.png"
alt="gmail"
style="object-fit: contain"
/>
<div class="rightlinktext">Best place for formal conversation</div>
<a
href="mailto: taranjeetsinghbedi2@gmail.com"
target="_blank"
class="asmall"
>taranjeetsinghbedi2@gmail.com</a
>
</div>
<div class="rightlink">
<img src="images/LinkedIn.png" alt="linkedin" />
<div class="rightlinktext">
Let's stay in touch! Connect with me on LinkedIn
</div>
<a href="https://www.linkedin.com/in/tartej/" target="_blank"
>LinkedIn/tartej</a
>
</div>
<div class="rightlink" id="rightlinkinsta">
<img src="images/Instagram.png" alt="instagram" />
<div class="rightlinktext">
Love the content? More available here
</div>
<a href="https://www.instagram.com/tartejbros/" target="_blank"
>Instagram/tartejbros</a
>
</div>
<div class="rightlink" id="rightlinkyoutube">
<img src="images/YouTube.png" alt="youtube" />
<div class="rightlinktext">
All Tech Stuff goes here. Don't forget to subscribe!
</div>
<a href="https://www.youtube.com/@WORLDINONEGO" target="_blank"
>YouTube/WorldInOneGo</a
>
</div>
<div class="rightlink" id="rightlinkyoutube">
<img
src="images/github.png"
alt="github"
style="object-fit: contain"
/>
<div class="rightlinktext">
Explore my projects showcased here, and be sure to give them a
star!
</div>
<a href="https://github.com/TartejBrothers" target="_blank"
>GitHub/TartejBrothers</a
>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>