-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice3.html
More file actions
111 lines (101 loc) · 6.95 KB
/
practice3.html
File metadata and controls
111 lines (101 loc) · 6.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>bootstrap_practice</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="css/hw3.css">
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.instagram.com/cheng_xuan/?hl=zh-tw" target="_blank">IG page</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.facebook.com/profile.php?id=100001425542090" target="_blank">FB page</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.youtube.com/channel/UCHMAkkkE3OkfpjbRoFVGM2g?view_as=subscriber" target="_blank">YouTube page</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://lockxuan.github.io" target="_blank">GitHub page</a>
</li>
</ul>
</div>
<form class="form-inline">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
</nav>
<section class="pricing py-5">
<div class="container">
<div class="row">
<!-- Free Tier -->
<div class="col-lg-4">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">Champion</h5>
<h6 class="card-price text-center">💖8<span class="period">/10</span></h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fas fa-check"></i></span> <strong>2018/12/22</strong></li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>13 members</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>All from NTU</li>
<li><span class="fa-li"><i class="fas fa-times"></i></span>College High</li>
</ul>
<a target="_blank" href="https://www.youtube.com/watch?v=N8jOK69WlSM&list=LLHMAkkkE3OkfpjbRoFVGM2g&index=13" class="btn btn-block btn-primary text-uppercase">Check it!</a>
</div>
</div>
</div>
<!-- Plus Tier -->
<div class="col-lg-4">
<div class="card mb-5 mb-lg-0">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">Cool</h5>
<h6 class="card-price text-center">💖9<span class="period">/10</span></h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fas fa-check"></i></span><strong>2019/03/03</strong></li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>13 members</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>All from NTU</li>
<li><span class="fa-li"><i class="fas fa-times"></i></span>preliminary of NTUTDC</li>
</ul>
<a target="_blank" href="https://www.youtube.com/watch?v=7kfGe7zuQ5g&list=LLHMAkkkE3OkfpjbRoFVGM2g&index=5" class="btn btn-block btn-primary text-uppercase">Check it!</a>
</div>
</div>
</div>
<!-- Pro Tier -->
<div class="col-lg-4">
<div class="card">
<div class="card-body">
<h5 class="card-title text-muted text-uppercase text-center">Best</h5>
<h6 class="card-price text-center">💖10<span class="period">/10</span></h6>
<hr>
<ul class="fa-ul">
<li><span class="fa-li"><i class="fas fa-check"></i></span><strong>2019/04/04</strong></li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>12members</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>All from NTU</li>
<li><span class="fa-li"><i class="fas fa-check"></i></span>My favorite, final of NTUTDC</li>
</ul>
<a target="_blank" href="https://www.youtube.com/watch?v=vkiC1dORUCU&list=LLHMAkkkE3OkfpjbRoFVGM2g&index=2&t=0s" class="btn btn-block btn-primary text-uppercase">Check it!</a>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>