-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (127 loc) · 5.43 KB
/
index.html
File metadata and controls
137 lines (127 loc) · 5.43 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
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Welcome to 雍程 Site!! (bootstrap version)</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- 導覽列 -->
<nav class="navbar-fixed-top my-nav navbar navbar-default">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">我的作品集</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="pull-right nav navbar-nav">
<li><a class="btn btn-default" href="#about" role="button">Who am I</a></li>
<li><a class="btn btn-default" href="#my-work" role="button">My work</a></li>
<li><a class="btn btn-default" href="#contact-me" role="button">Contact me</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- Who am I -->
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-5 col-md-4 col-lg-3">
<img src="img/my-avatar.jpg" class="img-responsive center-block" alt="">
</div>
<div class="col-xs-12 col-sm-7 col-md-8 col-lg-9">
<h1>I am 雍程</h1>
<h3>Developer and startup entrepreneur</h3>
<table class="table table-striped table-hover">
<tr>
<td>Birth</td>
<td>1987</td>
</tr>
<tr>
<td>工作經驗</td>
<td>> 7 年,設備維護</td>
</tr>
<tr>
<td>開發技能</td>
<td>HTML, CSS, JavaScript, Ruby on Rails, MySQL, GCP</td>
</tr>
<tr>
<td>學習經歷</td>
<td>
大航道計劃結業, 2018<br>
虎尾科技大學結業, 2009
</td>
</tr>
</table>
</div>
</div>
</div>
<!-- My Work -->
<h1 class="text-center" id="work">This is my work</h1>
<div class="container">
<div class="row">
<div class="my-project col-xs-12 col-sm-6 col-md-4 col-lg-3">
<img src="http://lorempixel.com/300/300/" class="img-responsive center-block" alt="">
</div>
<div class="my-project col-xs-12 col-sm-6 col-md-4 col-lg-3">
<img src="http://lorempixel.com/300/300/" class="img-responsive center-block" alt="">
</div>
<div class="my-project col-xs-12 col-sm-6 col-md-4 col-lg-3">
<img src="http://lorempixel.com/300/300/" class="img-responsive center-block" alt="">
</div>
<div class="my-project col-xs-12 col-sm-6 col-md-4 col-lg-3">
<img src="http://lorempixel.com/300/300/" class="img-responsive center-block" alt="">
</div>
<div class="my-project col-xs-12 col-sm-6 col-md-4 col-lg-3">
<img src="http://lorempixel.com/300/300/" class="img-responsive center-block" alt="">
</div>
</div>
</div>
<!-- Contact me -->
<h1 class="text-center">Contact me</h1>
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3 col-lg-4 col-lg-offset-4">
<form>
<div class="form-group">
<label for="name">姓名</label>
<input type="text" class="form-control" id="name">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="form-control" id="email">
</div>
<div class="form-group">
<label for="message">訊息</label>
<textarea class="form-control" id="message" rows="3"></textarea>
<p class="help-block">請留言</p>
</div>
<button type="reset" class="btn btn-danger">重設</button>
<button type="submit" class="btn btn-primary">提交</button>
</form>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>