-
Notifications
You must be signed in to change notification settings - Fork 29
/
index.html
78 lines (74 loc) · 3.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-151628009-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-151628009-2');
</script>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="css/style.css" />
<link type="text/css" rel="stylesheet" href="css/materialize.social.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>唬爛產生器</title>
</head>
<body>
<main>
<div class="container">
<h4>唬爛產生器</h4>
<blockquote>
<p>繳交報告、湊字數、應付男/女朋友的好夥伴</p>
</blockquote>
<blockquote>
<div>
<div class="input-field" style="margin-top: 15px;">
<input id="topic" type="text">
<label for="topic">*請輸入您的主題名稱</label>
</div>
<div class="input-field" style="margin-top: 15px;">
<input id="minlen" type="number">
<label for="minlen">*請輸入字數要求(上限1000)</label>
</div>
<a class="waves-effect waves-light red darken-4 btn-small pulse" loading-text="產生中..." id="btn-get-bullshit">產生</a>
</div>
</blockquote>
<div style="margin: 50px; font-weight: 600;">
<p id="content"></p>
</div>
</div>
</main>
<footer class="page-footer" style="padding-top: 10px;">
<div class="container">
<div class="row" style="margin-bottom: 10px;">
<div class="col l6 s6">
<h5 class="white-text" style="font-family: 'Open Sans', sans-serif;">Developer</h5>
<p class="grey-text text-lighten-4">徐子修 Bill Hsu</p>
</div>
<div class="col l4 offset-l2 s6">
<h5 class="white-text" style="font-family: 'Open Sans', sans-serif;">Contact</h5>
<a class="waves-effect waves-light btn-floating social github" href="https://github.com/StillFantastic/bullshit">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
<a class="waves-effect waves-light btn-floating social facebook" href="https://www.facebook.com/profile.php?id=100000395222019">
<i class="fa fa-facebook"></i>
</a>
<a class="waves-effect waves-light btn-floating social telegram" href="https://t.me/bill_hsu">
<i class="fa fa-telegram"></i>
</a>
</div>
</div>
</div>
</footer>
</body>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script src="https://code.jquery.com/jquery-2.1.0.min.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</html>