-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 815 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (31 loc) · 815 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="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
p{
display: inline;
background-color: teal;
}
section+section{
background-color: teal;
}
</style>
</head>
<body >
<!-- <a> element links to the section below -->
<p><a href="#Section_further_down">Jump to the heading below</a></p>
<section>
hello
</section>
<!-- Heading to link to -->
<section>
<h2 id="Section_further_down">Section further down</h2>
<a href="text.hwp" download>text download</a>
</section>
</body>
</html>