-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
52 lines (43 loc) · 1.3 KB
/
about.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
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Devop Parker">
<meta name="description" content="Hi, I'm Devop Parker. This page is about me.">
<link rel="stylesheet" href="main.css">
<link rel="icon" href="html5.png">
<title>About Me</title>
</head>
<body>
<h1>Hi, I'm Devop Parker</h1>
<hr>
<p>I'm currently a student studying to become a Full stack developer.</p>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Veniam ratione
itaque voluptatibus, cupiditate sequi totam sunt, dolore suscipit, soluta
qui voluptatem assumenda repudiandae maiores deleniti nisi consequuntur
eos obcaecati excepturi?
</p>
<hr>
<ul>
<li>Download an <a href="html5.png" download>HTML5 Icon</a></li>
<li>Contact me at <a href="mailto:example@gmail.com">My Email</a></li>
<li>Dial <a href="tel:+1234567890">My phone number</a></li>
<li>
Open <a href="https://www.google.com/" target="_blank">Google</a> in a
new tab.
</li>
<li>
Open
<a href="https://www.duckduckgo.com/" target="_blank">duckduckgo</a> in
a new tab.
</li>
</ul>
<hr>
<<< © <a href="about.html"> Devop Parker</a> >>>
<p>
<a href="/">Back to Home</a>
</p>
</body>
</html>