-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (50 loc) · 1.07 KB
/
index.html
File metadata and controls
55 lines (50 loc) · 1.07 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>Document</title>
<style>
body {
background-color: #f0f0f0;
font-family: Arial, sans-serif;
color: #333;
}
h1 {
color: #2c3e50;
}
p {
font-size: 16px;
line-height: 1.5;
}
ul {
list-style-type: square;
padding-left: 20px;
}
li {
margin-bottom: 5px;
}
i {
font-style: italic;
color: #8e44ad;
}
</style>
</head>
<body>
<h1>welcome to the web development</h1>
<p>this is a simple web page</p>
<p>this is a simple web page</p>
<i>
<p>this is a simple web page</p>
<p>this is a simple web page</p>
</i>
<h2>what i learn </h2>
<ul>
<li>html</li>
<li>css</li>
<li>javascript</li>
<li>python</li>
<li>Rust</li>
</ul>
</body>
</html>