-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage_layout.html
More file actions
32 lines (31 loc) · 804 Bytes
/
page_layout.html
File metadata and controls
32 lines (31 loc) · 804 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
<!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>page layout creation</title>
</head>
<body>
<header>
<li> Home</li>
<li> About</li>
</header>
<main>
<section>
<a href="https://www.google.com/"> Open Google</a><br>
<a href="https://www.yahoo.com">Open Yahoo</a><br>
<a href="https://www.gmail.com"><br>
<img src="code1.jpg" alt="gmail.com" height="100px">
</a>
</section>
<section>
<aside>
<div></div>
</aside>
</section>
</main>
<footer>
</footer>
</body>
</html>