-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp3.php
More file actions
75 lines (59 loc) · 1.3 KB
/
p3.php
File metadata and controls
75 lines (59 loc) · 1.3 KB
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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<style>
div.container {
top: 25px;
width: 100%;
border-bottom: 1px solid white;
border-top: 1px solid gray;
}
header, footer {
padding: 1em;
color: white;
background-color: black;
clear: left;
text-align: center;
}
nav {
float: left;
max-width: 160px;
margin: 0;
padding: 1em;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul a {
text-decoration: none;
}
article {
margin-left: 170px;
border-left: 1px solid gray;
padding: 1em;
overflow: hidden;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>ICT Gallery</h1>
</header>
<nav>
<ul>
<li><a href="#">CSE</a></li>
<li><a href="#">EEE</a></li>
<li><a href="#">SE</a></li>
</ul>
</nav>
<article>
<p><b>CSE</b></p><br>
<p>Computer science is the study of the theory, experimentation, and engineering that form the basis for the design and use of computers.</p><br>
<p>Programming in computer science is the study of the theory, experimentation, and engineering that form the basis for the design and use of computers.</p><br>
</article>
<footer>Copyright © W3Schools.com</footer>
</div>
</body>
</html>