-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout_us.html
37 lines (33 loc) · 1.14 KB
/
About_us.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
<!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>About us</title>
<style>
* {
background-color: #faedcd;
}
.about {
width: 700px;
height: 400px;
border-width: 20px;
border-radius: 5px ;
border-color: black;
background-color: #faedcd;
text-align: center;
}
</style>
</head>
<body>
<div class="about">
<h1>Glad to see you here</h1>
<h3>we are still working as a web developer</h3>
<h2>This is developed by SHASHVAT MISHRA....</h2>
<h3>you can contact him on his email address : <a href="mailto: shashvatmishra094@g,ail.com">shashvatmishra094@gmail.com</a></h3>
<h3><a href="https://www.linkedin.com/in/shashvat-mishra-b8a04a247/">click here</a>To connect through linkedin</h3>
<h3><a href="https://github.com/shashvatms">click here</a>To have a look on my github</h3>
</div>
</body>
</html>