-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
87 lines (83 loc) · 2.4 KB
/
about.html
File metadata and controls
87 lines (83 loc) · 2.4 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="navbar">
<a href="index.html">หน้าแรก</a>
<a href=about.html>เกี่ยวกับ</a>
<a href="service.html">บริการ</a>
<a href="">ติดต่อ</a>
<a href=register.html>สมัครงาน</a>
<form>
<div class="search">
<form>
<input type="text" placeholder="Search...">
<button type="submit"><i class="fa fa-search"></i></button>
</div>
</form>
</div>
</body>
</html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
</head>
<body>
<header>
<h1>About Me</h1>
</header>
<section>
<h2>Personal Information</h2>
<ul>
<li>Name: John Doe</li>
<li>Age: 30</li>
<li>Occupation: Web Developer</li>
<li>Email: johndoe@example.com</li>
</ul>
<p>Hi, my name is John Doe. I'm a web developer with over 5 years of experience. <br>I'm passionate about creating
websites and web applications that are both beautiful and functional. <br>In my free time, I enjoy playing video
games and exploring new technologies.</p>
</section>
<section>
<h2>Education</h2>
<ul>
<li>Bachelor of Computer Science, XYZ University</li>
<li>Master of Web Development, ABC College</li>
</ul>
</section>
<section>
<h2>Skills</h2>
<ul>
<li>HTML/CSS</li>
<li>JavaScript</li>
<li>PHP</li>
<li>MySQL</li>
<li>React</li>
<li>Angular</li>
<li>Vue.js</li>
<li>Bootstrap</li>
<li>Node.js</li>
</ul>
<p>I am proficient in a variety of web development technologies, including HTML/CSS, JavaScript, PHP, MySQL,
React, Angular, Vue.js, Bootstrap, and Node.js.</p>
</section>
<section>
<h2>Portfolio</h2>
<ul>
<li><a href="https://example.com/project1">Project 1</a></li>
<li><a href="https://example.com/project2">Project 2</a></li>
<li><a href="https://example.com/project3">Project 3</a></li>
</ul>
</section>
<footer>
<p>© John Doe</p>
</footer>
</body>
</html>