-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactme.html
More file actions
133 lines (120 loc) · 3.7 KB
/
contactme.html
File metadata and controls
133 lines (120 loc) · 3.7 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
<!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>Contact</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<style>
body{
font-family:'Pangolin', cursive;
background-color: #050404;
margin: 0;
padding:0;
}
#menu{
color:palevioletred;
font-size: 25px;
}
#menu ul{
margin:0;
padding: 0;
}
#menu li{
display:inline-block;
color:palevioletred;
}
#menu li a{
display:block;
padding:10px 14px;
text-decoration: none;
color:palevioletred;
/* color:black; */
}
#menu li a:hover{
/* background:crimson; */
color:rgb(242, 37, 71);
}
.input-box {
position: center;
width: 50%;
margin-bottom: 10px;
margin-left: 345px;
margin-top: 10px;
}
.input-box input,textarea{
color: rgb(0,0,0);
width: 100%;
padding: 5px;
font-size: 1em;
font-weight: 500;
border-radius: 7px;
outline: none;
border: 1px solid rgb(0,0,0);
}
.send-btn {
color: rgb(255,255,255);
background-color: palevioletred;
display: inline-block;
font-size: 1.1em;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 2px;
width: 100%;
border: none;
cursor: pointer;
}
.send-btn:hover {
color: rgb(30, 237, 245);
}
.oncall{
margin-top:5px;
margin-left:500px;
width:80%;
height:80%;
align-self: center;
}
</style>
</head>
<body>
<div id="menu">
<ul>
<li><a href="index.html">Home </a></li>
<li><a href="about.html">About</a></li>
<li><a href="about.html">Skills</a></li>
<li><a href="contactme.html">Contact me </a></li>
</ul>
</div>
<div class="row">
<div class="contact-form">
<!-- <h3>Send Message</h3> -->
<div class="input-box">
<input type="text" name="" value="" placeholder="Name">
</div>
<div class="input-box">
<input type="text" name="" value="" placeholder="Email">
</div>
<div class="input-box">
<textarea name="name" rows="5" cols="50" placeholder="Message"></textarea>
</div>
<div class="input-box">
<input type="submit" class="send-btn">
</div>
</div>
</div>
<div class="menu">
<!-- <p>Wanna know more about me? Here are my social links! Ping me anytime</p> -->
<ul>
<li><a href="https://github.com/Sansgithub22"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/sanskruti-kolgane-b82a1922a/"><i class="fab fa-linkedin-in"></i></a></li>
<li><a href="mailto:sanskrutikolgane@gmail.com"><i class="fab fa-envelope"></i></a></li>
<li><a href="https://www.instagram.com/__k.sanskruti___/"><i class="fab fa-instagram"></i></a></li>
</ul>
</div>
<div class="oncall">
<img src="call.png" alt="" />
</div>
</body>
</html>