-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (121 loc) · 4.31 KB
/
index.html
File metadata and controls
122 lines (121 loc) · 4.31 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
<!DOCTYPE html>
<html>
<head>
<title>Welcome to Myra’s Site!!!</title>
<link type="text/css" rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="nav">
<div class="container">
<button type="button" class="menu-button">
三
</button>
<input type="checkbox" class="menu-button-checkbox">
<ul class="menu">
<li><a href="#about">Who am I</a></li>
<li><a href="#my-work">My Work</a></li>
<li><a href="#contact-me">Contact me</a></li>
</ul>
</div>
</div>
<div id="content">
<div class="container">
<div id="about">
<div id="my-avatar">
<img src='https://placehold.it/300x300'>
</div>
<div id="my-info">
<h1>I am Allen Pan</h1>
<h3>Developer and startup entrepreneur</h3>
<hr>
<table>
<tr>
<th>Birth</th>
<td>1981</td>
</tr>
<tr>
<th>工作經驗</th>
<td>> 6 年,物聯網、網站開發、創業</td>
</tr>
<tr>
<th>開發技能</th>
<td>C++, HTML, CSS, JavaScript, Ruby on Rails, MySQL, GCP</td>
</tr>
<tr>
<th>學習經歷</th>
<td>
大航道計劃結業, 2018<br>
ALPHA 大學結業, 2017
</td>
</tr>
</table>
</div>
</div>
<hr class="bar">
<div id="my-work">
<h1>This is My Work</h1>
<div id="my-work-gallery">
<div class="item">
<img src="http://lorempixel.com/300/300/" alt="My Personal Site">
<div class="item-info">
<h3>我的個人網站</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Reiciendis, laudantium.</p>
</div>
</div>
<div class="item">
<img src="http://lorempixel.com/300/300/" alt="My Personal Site">
<div class="item-info">
<h3>我的個人興趣</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Reiciendis, laudantium.</p>
</div>
</div>
<div class="item">
<img src="http://lorempixel.com/300/300/" alt="My Personal Site">
<div class="item-info">
<h3>我的私家收藏</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Reiciendis, laudantium.</p>
</div>
</div>
<div class="item">
<img src="http://lorempixel.com/300/300/" alt="My Personal Site">
<div class="item-info">
<h3>我的假日嗜好</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Reiciendis, laudantium.</p>
</div>
</div>
<div class="item">
<img src="http://lorempixel.com/300/300/" alt="My Personal Site">
<div class="item-info">
<h3>我的人生目標</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Reiciendis, laudantium.</p>
</div>
</div>
</div>
</div>
<hr class="bar">
<div id="contact-me">
<h1>Contact me</h1>
<form action="" class="contact-form">
<div class="form-row">
<label for="name">姓名</label>
<input id="name" name="name" type="text">
</div>
<div class="form-row">
<label for="email">Email</label>
<input id="email" name="email" type="email">
</div>
<div class="form-row">
<label for="message">訊息</label>
<textarea name="message" id="message"></textarea>
</div>
<div class="form-row">
<button type="reset">重設</button>
<button type="submit">提交</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>