-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (73 loc) · 2.52 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lindsay's Web</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+TC&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<style>
.list-group-item {
height: 50px;
width: 590px;
}
.options div,
.clear-all {
border-radius: 6px;
border: 1px solid transparent;
cursor: pointer;
}
body {
background-color: #224;
color: aliceblue;
font-family: 'Noto Serif TC', serif;
font-weight: 400;
}
.container {
padding: 100px 0 30px 0;
}
ul {
list-style: none;
}
li {
margin: 0 auto;
padding: 20px 30px 0 0;
}
.col-lg-6 {
border: 1px solid aliceblue;
border-radius: 10px;
padding: 30px 40px 50px 40px;
}
.btn {
cursor: pointer;
color: aliceblue;
border-color: aliceblue;
}
.btn:hover {
background-color: aliceblue;
color: #224;
}
.text-center {
padding-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<h1 class="text-center">Lindsay's Practice Web</h1>
<ul class="input-group mb-3">
<li><a class="btn" target="_blank" href="http://lindsay0214.tw/todo.html">待辦事項</a></li>
<li><a class="btn" target="_blank" href="http://lindsay0214.tw/blog/index.php">部落格</a></li>
<li><a class="btn" target="_blank" href="http://mentor-program.co/mtr04group3/Lindsay/week11/comments/index.php">留言板1(暫)</a></li>
<li><a class="btn" target="_blank" href="http://mentor-program.co/mtr04group3/Lindsay/week12/hw1/index.html">留言板2(暫)</a></li>
</div>
</div>
</div>
</div>
</body>
</html>