-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput.html
More file actions
34 lines (34 loc) · 1.54 KB
/
Copy pathoutput.html
File metadata and controls
34 lines (34 loc) · 1.54 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Extracted Highlighted Text</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 2rem;
max-width: 800px;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.5em;
margin-bottom: 0.5em;
}
p { margin-bottom: 1em; }
.page-marker {
margin-top: 2em;
padding: 0.5em;
background-color: #f0f0f0;
border-radius: 4px;
font-size: 0.9em;
color: #666;
}
</style>
</head>
<body>
<p>Yellow highlight: This text should be highlighted in yellow.</p>
<p><strong>THIS IS A BOLD TEXT</strong></p>
<h2>THIS IS A BOLD TEXT 18 SIZE</h2>
<h1>THIS IS A BOLD TEXT 24 Size</h1>
</body>
</html>