-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAboutMeWeb.html
More file actions
128 lines (122 loc) · 5.68 KB
/
AboutMeWeb.html
File metadata and controls
128 lines (122 loc) · 5.68 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>AboutMe</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://use.fontawesome.com/releases/v5.0.8/css/all.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="./main.css" />
</head>
<body>
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-navbar">
<a class="navbar-brand" href="#">
<i class="fab fa-autoprefixer"></i>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<ul class="navbar-nav ml-auto">
<li>
<a class="nav-item nav-link active" href="#home">HOME</a>
</li>
<li>
<a class="nav-item nav-link" href="#about">ABOUT</a>
</li>
<li>
<a class="nav-item nav-link" href="#port">PORTFOLIO</a>
</li>
<li>
<a class="nav-item nav-link" href="#contact">CONTACT</a>
</li>
</ul>
</div>
</nav>
<div class="backp" id="home">
<header>
<h1>Hi This is Jacob</h1>
<p>And this is my story</p>
</header>
</div>
<div class="frontp">
<section class="about" id="about">
<img src="./MVIMG_20180309_182338-01.jpg">
<h2>About me</h2>
<div class="row">
<div class="col-md-6 col-sm-12">
<h2>Hong Kong Life</h2>
<p>I did my primary and some of my secondary school here. Found </p>
</div>
<div class="col-md-6 col-sm-12">
<h2>Australia Life</h2>
<p>I finished my secondary school and try Uni </p>
</div>
<div class="col-md-6 col-sm-12">
<h2>My Hobby</h2>
<p>Since i used to be in choir, i love sing with others, gaming, basketball, anime.</p>
</div>
<div class="col-md-6 col-sm-12">
<h2>My Goal</h2>
<p>To get a job related to software Engineering or in IT field but my ultimate goal is be able to go back AUS</p>
</div>
</div>
</section>
<section class="pofo" id="port">
<h2>My Portfolio</h2>
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block" src="./pofo-1.png" alt="First slide" width="500" height="345">
</div>
<div class="carousel-item">
<img class="d-block" src="./pofo-2.png" alt="Second slide" width="500" height="345">
</div>
<div class="carousel-item">
<img class="d-block" src="./Screenshot_20170831-213729_2.png" alt="Third slide" width="500" height="345">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</section>
<section class="contact" id="contact">
<h2>Contact Me</h2>
<div>
<p>Feel free to send me a E-mail for project or just chi-chat:)</p>
<a href="jacob35723763@gmail.com">jacob35723763@gmail.com</a>
</div>
<p>Address</p>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d944643.9899200131!2d113.5672949797411!3d22.35304035318106!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3403fefda2ea2807%3A0x486db43574f494da!2z6aaZ5riv!5e0!3m2!1szh-TW!2shk!4v1520954021904" width="400" height="300" frameborder="0" style="border:0" allowfullscreen></iframe>
<div class "rightside">
<a class="navbar-brand" href="https://www.facebook.com/jacob.chanpakhei">
<i class="fab fa-facebook"></i>
</a>
<a class="navbar-brand" href="https://www.instagram.com/cha0173/">
<i class="fab fa-instagram"></i>
</a>
</div>
</section>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script src="main.js"></script>
</body>
</html>