-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (56 loc) · 2.31 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<title>My Webpage (main page)</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<style>
h1 {
color: maroon;
text-align: center;
}
h3,p{
color:black;
text-align: justify;
font-family: "Times New Roman", Times,serif;
}
</style>
<link rel="stylesheet" href="mystyle.css">
</head>
<body>
<h1>A little about me</h1>
<h3> My backgroud</h3>
<p>
I was born in Ningbo, China. A seaport city in the Zhe Jiang province near Shanghai. I had my
elementary school and Grade 7 to 9 there. Since Ningbo is right beside the ocean, we had a lot of chances
eat seafood. Therefore, I am not too interested in eating seafood. Since I had it a lot in my childhood.
</p>
<div class="row">
<div class="column">
<img src="Ningbo.jpg" alt="Ningbo,Zhejiang" style="height:100%">
</div>
<div class="column">
<img src="port.jpg" alt="Ningbo Port" style="height:100%">
</div>
</div>
<div class="alert alert-success" role="alert">
The left image shows the central area of Ningbo, where the right image shows the port of Ningbo.
</div>
<h3>My education</h3>
<ul>
<li>elementary School: JiangDond Central School</li>
<li>Grade 7 to 9 (middle School): SongZhaoQiao Middle School</li>
<li>High School: Semiahmoo Secondary School </li>
<li>Univeristy: Univeristy of Calgary</li>
</ul>
<p>
<a href="page2.html" target="_self">More about myself</a>
<p><a href="page3.html" target="_self">Learn more about my university life</p>
</p>
</body>
</html>