-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAboutUs.php
More file actions
34 lines (33 loc) · 733 Bytes
/
AboutUs.php
File metadata and controls
34 lines (33 loc) · 733 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>WELCOME TO TECH WORLD</title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
<style type="text/css">
*{
margin: 0;
padding: 0;
font-family: century gothic;
}
.About{
max-width: 1400px;
height: 1000px;
width: 1400px;
margin: auto;
background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3));
color: white;
}
</style>
</head>
<body>
<header>
<?php include('Header.php')?>
</header>
<br><br><br><br><br><br>
<font size="36"><h1 class="title"><center>ABOUT US</center></h1></font>
<div class="About">This website is developed using HTML, CSS and PHP.</div>
<footer class="footer">
<?php include('Footer.php')?>
</footer>
</body>
</html>