-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
78 lines (68 loc) · 1.78 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
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<title>About Us</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="icon" type="image/x-icon" href="https://as1.ftcdn.net/v2/jpg/00/99/98/14/1000_F_99981436_kAbBqwOKn0KPBD8XtAqPfg5jf7yTFhep.jpg">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
header h1 {
margin: 0;
}
main {
padding: 20px;
}
section {
margin-bottom: 30px;
}
section h2 {
margin-bottom: 10px;
}
footer {
background-color: #f5f5f5;
color: #333;
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>About Us</h1>
</header>
<main>
<section>
<h2>Welcome to Our Educational Website</h2>
<p>
We are the group of the people which aim to increse the level of study material.In "Take_You_Onlne" group all the people of Computer Science background and having good knowlwnde in there field.
</p>
</section>
<section>
<h2>Our Mission</h2>
<p>
Our website focouse on programming part of computer science and also core subject of computer science, we help to provide best content for gate exam and programming and also provide practice question for building concepts more logically.
</p>
</section>
<section>
<h2>Support</h2>
<p>
If you want to help us for building this website more effect for user or want to give any suggestion please mail us:
<h3>Email_Id: <a href="">[email protected]</a></h3>
</p>
</section>
</main>
<footer>
<p>© Take_You_Online. All rights reserved.</p>
</footer>
</body>
</html>