This repository has been archived by the owner on Dec 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProfile.html
98 lines (94 loc) · 3.53 KB
/
Profile.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width,initial-scale=1" name="viewport">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Here</title>
<link rel="stylesheet" href="https://bootswatch.com/lumen/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
body {
margin-top: 70px;
}
p
{
font-family: 微軟正黑體;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<a class="navbar-brand" href="#">Here</a>
<ul class="nav navbar-nav">
<li>
<a href="index.html">Homepage</a>
</li>
<li>
<a href="https://www.facebook.com/" target="_blank">Facebook</a>
</li>
<li class="active">
<a href="Profile.html">Profile</a>
</li>
<li>
<a href="Article.html">Article</a>
</li>
</ul>
<form class="navbar-form navbar-right" role="search">
<div class="form-group">
<input type="text" class="form-control" placeholder="Search">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</nav>
<div class="container">
<div class="col-xs-9 col-sm-9 col-md-9 col-lg-9">
<ol class="breadcrumb">
<li>
<a href="#">Home</a>
</li>
<li class="active">Profile</li>
</ol>
<div class="Profile">
<h2>Profile <img src="img/image01.png" alt="mind" style="width:32px;height:32px;"></h2>
<h4>Name: Chih Yun Chen (Janice) <img src="img/personalpic.jpg" alt="personal pic" style="float: right;width:230px;height:300px;"></h4>
<p>Interest: (definitely not Learning...)</p>
<ul>
<li>
<p>Reading novels (e.g. Harry Potter)</p>
</li>
<li>
<p>Eating as more as I can</p>
</li>
<li>
<p>Thinking till sleep</p>
</li>
<li>
<p>Watching American series (e.g. House of cards, TBBT (大推))</p>
</li>
</ul>
<br>
<p>I can't live without PTT.</p>
<p>是個比想像中無趣,比現實中有趣的人。</p>
</div>
</div>
<div class="col-xs-3 col-sm-3 col-md-3 col-lg-3">
<div class="alert alert-danger">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<strong>Who's blog ?</strong> Janice
</div>
<div class="list-group">
<a href="#" class="list-group-item active">Daily life</a>
<a href="#" class="list-group-item">Things with my little friend</a>
<a href="#" class="list-group-item">Would like to share!</a>
<a href="#" class="list-group-item">Memory</a>
<a href="#" class="list-group-item">LOL (not the game)</a>
</div>
</div>
</div>
</body>
</html>