-
Notifications
You must be signed in to change notification settings - Fork 0
/
page3B.html
37 lines (29 loc) · 981 Bytes
/
page3B.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Homepage</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/mystyle.css">
</head>
<body>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="snippets.html">Snippets</a></li>
<li class="dropdown"><a class="active" href="javascript:void(0)" class="dropbtn">Dropdown Menu</a>
<div class="dropdown-content">
<a href="page3A.html">Page 3A</a>
<a href="page3B.html">Page 3B</a>
<a href="page3C.html">Page 3C</a>
</div>
</li>
<li><a href="extra-page.html">Extra Page</a></li>
<li><a href="about-us.html">About</a></li>
</ul><br/>
<hr><!-- hoeft niet afgesloten te worden -->
<h1>This is the Page 3B</h1>
<p style="color:red">This is the index page.</p>
<p title="dit is een tooltip">tekst met tooltip</p>
<a href="https://www.w3schools.com">This is a link</a>
<!--- attributes altijd tusse quotes (aanbevolen) -->
</body>
</html>