-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
65 lines (63 loc) · 2.14 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="image/nature.png" />
<title>About</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="css/w3.css" />
<link rel="stylesheet" href="css/w3pro.css" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<script src="js/w3.js"></script>
<script src="https://www.w3schools.com/lib/w3.js"></script>
</head>
<body>
<!-- Navigation (Stays on Top) -->
<div id="navDemo" class="w3-top w3-bar w3-black w3-padding-16 w3-mobile">
<a href="index.html"
><img
class="w3-display-left"
src="image/nature.png"
style="width: 60px; padding-left: 10px"
/></a>
<div style="padding-left: 60px">
<a href="index.html" class="w3-bar-item w3-button">Home</a>
<a href="about.html" class="w3-bar-item w3-button">About</a>
<a href="#members" class="w3-bar-item w3-button">Members</a>
<a href="contact.html" class="w3-bar-item w3-button">Contact</a>
</div>
</div>
<!--content-->
<img
class="image-margin w3-hover-grayscale"
src="image/sujit-sarkar.jpg"
alt="my image"
/>
<div class="w3-container w3-panel w3-leftbar w3-light-grey">
<h3 class="w3-xlarge w3-serif">Hello</h3>
<p class="w3-xlarge w3-serif">
    My name is Sujit Sarkar. I am from West bengal. The
author of this website.
</p>
</div>
<div class="w3-container w3-black w3-center w3-padding-16 footer">
<a href="#help" class="w3-bar-item w3-button">Help</a>
<a href="#send feedback" class="w3-bar-item w3-button">Send feedback</a>
<a href="#privacy policy" class="w3-bar-item w3-button">Privacy Policy</a>
<a href="#terms of service" class="w3-bar-item w3-button"
>Terms of Service</a
>
</div>
</body>
</html>
<style>
.image-margin {
margin-top: 20%;
width: 40%;
height: 20%;
border-radius: 40px;
display: block;
margin-left: auto;
margin-right: auto;
}
</style>