-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (99 loc) · 5.46 KB
/
index.html
File metadata and controls
104 lines (99 loc) · 5.46 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
<!DOCTYPE html>
<head>
<title>Wuu's World</title>
<link rel="icon" href="./images/tiger_icon.png" type="image/x-icon">
<meta name="viewport" content="width=devicewidth, initial-scale=1, shrink-to-fit=no">
<!-- bootstrap4 -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/home.css">
<!-- animation -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v6.1.0/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kdam+Thmor+Pro&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Smooch&display=swap" rel="stylesheet">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-W377VZCFZB"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-W377VZCFZB');
</script>
</head>
<body>
<div class="container-fluid">
<div class="row overall">
<div class="my-icon animate__animated animate__zoomIn animate__delay-1s animate__slow">
<img src="images/tiger_icon.png" class="my-img">
</div>
<div class="hello animate__animated animate__bounceInLeft">
<p>Hi! I'am Tiger. A Robotic Lover,<br>
A Ping Pong Freaker,<br>
A Dream Chaser.<br>
</p>
</div>
<!-- Footer-->
<footer class="left-bottom">
<div class="container px-4 px-lg-5">
<ul class="list-inline text-center">
<li class="list-inline-item">
<a href="https://www.instagram.com/p_shiang_1108" target="_blank">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-instagram fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.facebook.com/beanfunmember" target="_blank">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-facebook-f fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://github.com/TigerWuu" target="_blank">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/ching-hsiang-wu-313256226/" target="_blank">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-linkedin-in fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
<div class="small text-center text-muted fst-italic">Copyright © 2022 TigerWuu. All rights reserved.</div>
</div>
</footer>
<div class="col-2 col-md-4 intro">
</div>
<div class="col-10 col-md-8 content-background ">
<nav class="navbar navbar-light flex-column animate__animated animate__bounceInRight outline">
<nav class="nav nav-pills flex-column">
<a class="nav-link about-hover" href="about.html">About</a>
<a class="nav-link projects-hover" href="projects.html">Projects</a>
<a class="nav-link activities-hover" href="activities.html">Activities</a>
<a class="nav-link hobbies-hover" href="hobbies.html">Hobbies</a>
<a class="nav-link contact-hover" href="contact.html">Contact</a>
</nav>
</nav>
</div>
</div>
</div>
<script src="scripts/home.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.12.9/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>