-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexample_html.html
43 lines (36 loc) · 962 Bytes
/
example_html.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
<!DOCTYPE html>
<html>
<head>
<title>Example HTML Page</title>
<style>
.container{
text-align: center;
}
.container2{
color: red;
}
</style>
</head>
<body>
<h1> Welcome to my page </h1>
<p>This is a sample HTML page</p>
<a href="https://www.google.com">Google Link</a>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<div class="container">
<h2>First Div</h2>
<p>This is the content of the First Div</p>
</div>
<div class="container2">
<h2>Second Div</h2>
<p>This is the content of the Second Div</p>
</div>
<div class="container container2">
<h2>Third Div</h2>
<p>This is the content of the Third Div</p>
</div>
</body>
</html>