forked from CoderAcademy-ALL/portfolio-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (56 loc) · 2.07 KB
/
index.html
File metadata and controls
57 lines (56 loc) · 2.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
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Portfolio Page</title>
</head>
<body>
<header></header>
<section id="profile">
<h1 class="title">Khaing Tun</h1>
<div class="row container">
<div class="col-4 col-s-12">
<img src="img/mypic.jpg" alt="mypic">
</div>
<div class="col-8 col-s-12">
<p>Welcome to my page ! This is my first webpage! Please explore my page and feel free to leave some comments for any suggestions </p>
<p>I have added the links to connect me </p>
</div>
</div>
</section>
<section id="projects">
<h1 class="title">PROJECTS</h1>
<div class="row container">
<div class="col-4 col-s-12">
<div class="project">
<img src="img/iot.jpeg" alt="iot">
<h2>Internet Of Things</h2>
<a href="/">Show More</a>
</div>
</div>
<div class="col-4 col-s-12">
<div class="project">
<img src="img/vehicle_diagnostics.jpeg" alt="iot">
<h2>vehicle diagnostics</h2>
<a href="/">Show More</a>
</div>
</div>
<div class="col-4 col-s-12">
<div class="project">
<img src="img/web-development.jpeg" alt="iot">
<h2>Web development</h2>
<a href="/">Show More</a>
</div>
</div>
</div>
</section>
<section id="skills"></section>
<footer>
<div class="contact">
</div>
</footer>
</body>
</html>