-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContacts.html
93 lines (76 loc) · 2.67 KB
/
Contacts.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
font-family: 'Cormorant Garamond', serif;
line-height: 1.6;
text-align: center;
}
.header {
font-size: 48px;
line-height: 1.6em;
}
.navigation a {
color: blueviolet;
font-size: 20px; /* Adjusted for better responsiveness */
margin: 0 10px; /* Adjusted spacing */
}
.content {
width: 50%;
margin: 4rem auto;
text-align: center;
font-size: 18px;
line-height: 1.8;
text-align: justify;
text-justify: inter-word;
}
.profile-picture {
width: 100%;
height: auto;
margin-top: 20px;
}
@media (min-width: 768px) {
.content {
width: 50%;
}
.navigation a {
font-size: 35px;
}
}
</style>
</head>
<body>
<div class="container-fluid sticky-top bg-white">
<div class="row">
<div class="col-12">
<header class="header py-3">ROHAN KHANDELWAL</header>
</div>
</div>
<nav class="row navigation">
<div class="col-12 navigation">
<a href="index.html">Home</a>
<a href="Internships.html">Internships</a>
<a href="Projects.html">Projects</a>
<a href='Contacts.html'> Contacts</a>
<a href="CV.html">CV</a>
</div>
</nav>
</div>
<div class="container content text-center">
<!-- <div class="row">
<div class="col-12 content"> -->
<!-- Example Internship Block -->
<h1>Please, get in touch:</h1>
<br>
<p>Contact: +91 7999491672</p> <p>Email: [email protected]</p> <p>Linkedin: <a href="https://www.linkedin.com/in/rrohnyy02/"> https://www.linkedin.com/in/rrohnyy02/ </a> </p> <p>Github: <a href="https://github.com/rrohnyy02"> https://github.com/rrohnyy02 </a> </p>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>