-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
80 lines (67 loc) · 2.02 KB
/
example.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Example 1 Website</title>
<link rel="stylesheet" type="text/css" href = "style.css">
</head>
<body>
<div id="wrapper">
<header>
<div id="company_info">
<img src="https://www.google.com" alt= "company_log" id="logo"/>
<h1>Example 1</h1>
<h2>My Example</h2>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Services</a></li>
<li><a href="#"</li>
</ul>
</nav>
</header>
<div id="banner">
<div id="banner">
My banner
</div>
</div>
<section>
<article>
<h1>Page Title</h1>
<p></p>
<div id="pictures">
<h1>My pictures</h1>
<p><img src="https://www.google.com" alt="Picture>
<img src="www.google.com" alt="Picture"></p>
</div>
</article>
<aside>
<h2>More information</h2>
<p id="picture"><img src="facebook.png" alt="Facebook" </p>
</aside>
</section>
<footer>
<div id="location">
<h3>Location</h3>
<p>Map</p>
</div>
<div id="details">
<h3>My details</h3>
<p><c>copy write</c></p>
</div>
<div id="links">
<h3>Website</h3>
<u1>
<li><a href="#">HOME</a></li>
<li><a href="#">Contact</a></li>
</u1>
<ul>
<li><a href="#">Products</a></li>
<li><a href="#">About</a></li>
</ul>
</div>
</footer>
</div>
</body>
</html>