forked from hellojs-tw/bootstrap-101-practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintroduction.html
More file actions
142 lines (115 loc) · 6.04 KB
/
introduction.html
File metadata and controls
142 lines (115 loc) · 6.04 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
138
139
140
141
142
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bruce</title>
<!-- 引入icon之方法 -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Bootstrap CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js 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/libs/html5shiv/3.7.3/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-light" style="background-color: #1C1C1C" role="navigation">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar" style="background-color: white"></span>
<span class="icon-bar" style="background-color: white"></span>
<span class="icon-bar" style="background-color: white"></span>
</button>
<a class="navbar-brand" href="#" style="color:#C4C4C4" ><span style="font-size:30px;">Bruce</span></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-ex1-collapse">
<!-- <ul class="nav navbar-nav ">
<li class="active"><a href="#" style="color:#C4C4C4">Link</a></li>
<li><a href="#" style="color:#C4C4C4">Link</a></li>
</ul> -->
<!-- <form class="navbar-form navbar-left" 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> -->
<ul class="nav navbar-nav navbar-right">
<li><a href="#" style="color:#C4C4C4">Link</a></li>
<li class="dropdown">
<a href="#" style="color:#C4C4C4" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li><a href="#">Separated link</a></li>
</ul>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-xs-3 col-sm-3 col-md-3 col-lg-3">
<img src="C:\Users\user\Desktop\YTHH.jpg" class="img-responsive"><br>
<div class="list-group">
<a href="#" class="list-group-item active"><i class="fa fa-home fa-fw"></i>
Home</a>
<a href="#" class="list-group-item"><i class="fa fa-user-circle fa-fw"></i> About Me</a>
<a href="#" class="list-group-item"><i class="fa fa-book fa-fw"></i> Resume</a>
<a href="#" class="list-group-item"><i class="fa fa-send-o fa-fw"></i> Contact</a>
</div>
</div>
<div class="col-xs-8 col-sm-8 col-md-8 col-lg-8">
<div class="panel panel-default">
<div class="panel-heading" style="background:#1C1C1C">
<div class style="color:white">About Me</div>
</div>
<div class="panel-footer">
Yo
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" style="background:#1C1C1C">
<div class style="color:white">Resume</div>
</div>
<div class="panel-footer">
Yuntech - computer science information engineering
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" style="background:#1C1C1C">
<div class style="color:white">Contact</div>
</div>
<div class="panel-footer">
09-8787878787
</div>
</div>
</div>
</div>
</div>
<!-- 引入icon之方法 -->
<footer class="panel panel-default panel-default text-center">
<div class="panel-body">
<h2>
<a href="https://www.facebook.com/"><i class="fa fa-facebook-square" aria-hidden="true"></i></a>
<a href="https://www.instagram.com/"><i class="fa fa-instagram" aria-hidden="true" style="color:#FF3333"></i></a>
<a href="https://twitter.com/"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="https://youtube.com/"><i class="fa fa-youtube" aria-hidden="true" style="color:red"></i></a>
</h2>
</h2>
</div>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Bootstrap JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>