-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
81 lines (71 loc) · 2.07 KB
/
about.php
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
<!DOCTYPE html>
<html>
<head>
<title>About</title>
<link href="custom-temp.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" charset="UTF-8">
<style>
div{
border : 1px;
}
body {
margin-top: 40px;
.all {
width:80%;
border:1px solid black;
border-radius:15px;
background:gray;
}
}
h1 {font-family: "Times New Roman"; }
td{
text-align:center;
font-weight: bold;
}
footer{background:gray; height: 50px; width:100%; margin-left: 0px; border-radius: 5px 5px 0 0 ;}
</style>
</head>
<body>
<div class="all" style =' height:98%; width:80%;margin: 0 auto; background: lightgray;' >
<header class="main-header">
<div class ='site_logo' style = 'height:50px; width:50px; float:left;margin-top:-5px;'>
<a class="logo" href="index.php"><img src="Image/logo.png" alt="logo" style = 'height:60px; width:200px;'></a>
</div>
<div class = "nav_bar" style ='height: 50px;'>
<ul class="main-nav">
<li><a href="index.php">Home</a></li>
<li class="dropdown">
<a href="#">Online Judges</a>
<ul class="drop-nav">
<li><a href="judge_cf.php">Codeforces</a></li>
<li><a href="judge_atc.php">AtCoder</a></li>
<li><a href="#">HackerRank</a></li>
</ul>
</li>
<li><a href="about.php">About Me</a></li>
<li><a href="contact.php">Contact</a></li>
</ul>
</div>
<br>
</header>
<br>
<center> <img src="Banner.jpg" alt="Banner" style='width:90%; height: 200px;'/> </center>
<br><br>
<center><p style ='border:1px solid black; border-radius:25px; margin: 0 auto; width:90%; box-shadow: 0px 10px 40px blue;'>
<br><b><i><font color = 'purple'; >
This page is Under Construction!!!.<br>Please be patient.<br><br></font></i></b>
</p></center>
<br><br>
<center>
<footer>
<h4>
<font color="black">
<br>ssavi © <script type = "text/javaScript"> var now = new Date(); var Y = now.getFullYear(); document.writeln(Y); </script>
</font>
</h4>
</footer>
</center>
</div>
<br>
</body>
</html>