-
Notifications
You must be signed in to change notification settings - Fork 0
/
HTML Layout.html
35 lines (29 loc) · 1.34 KB
/
HTML Layout.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
<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>My first HTML layout</title>
<link rel="stylesheet" href="Layout.css">
</head>
<body style="font-family: unset;">
<div id="header">
<a href="images/logo.jpg"><h1 style="font-size:60px;"> Logo</a>
Welcome to our website</h1>
</div>
<div id="nav">
<a href="HTML Basics1.html"><strong> <h1 style="font-size: 25;">BASIC HTML</h1></strong></a><br>
<a href="HTML Ordered Lists.html"><strong><h1 style="font-size: 25;">LISTS</h1></strong></a><br>
<a href="First HTML Table.html"><strong><h1 style="font-size: 25;">TABLES</h1></strong></a><br>
<a href="My First HTML form.html"><strong><h1 style="font-size:25;">FORMS</h1></strong></a>
</div>
<div id="section">
</div>
<img src="images/bird 2.jpg" alt="Bird 2" style="width:1000px;height:750px;">
<div id="footer">
<h1 style="font-size:20px;">Copyright ©calebmunene.com
</div></h1>
</body>
</html>