-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDemo7_Footer.html
62 lines (53 loc) · 1.42 KB
/
Demo7_Footer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.Column {
float: left;
width: 27%;
height: 300px;
}
p {
font-size: 25px;
font-weight: bold;
}
</style>
<link rel="icon" type="image/x-icon" href="Images/MCE expert.png">
</head>
<body>
<h1> Dialog Demo</h1>
<dialog open> Welcome to Footer Demo </dialog>
<footer>
<div class="Column">
<p>Company</p>
<ul style="list-style-type: disc;">
<li> About us</li>
<li>Careers</li>
<li>Contact Us</li>
<li>FAQ</li>
</ul>
</div>
<div class="Column">
<p>Learn</p>
<ul>
<li> C#</li>
<li>ASP.NET MVC</li>
<li>HTML5,CSS,Js</li>
</ul>
</div>
<div class="Column">
<p>Practice</p>
<dl>
<dt> Major topics</dt>
<dd>Topics Wise</dd>
<li>Section Wise</li>
<li>Subject Wise</li>
</dl>
</div>
</footer>
</body>
</html>