-
Notifications
You must be signed in to change notification settings - Fork 0
/
future.html
166 lines (150 loc) · 5.03 KB
/
future.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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="/css/reset.css">
<!-- CSS reset -->
<link rel="stylesheet" href="/css/main.css">
<!-- Resource style -->
<link rel="stylesheet" href="css/style.css">
<!-- Page Style -->
<script src="js/modernizr.js"></script>
<!-- Modernizr -->
<title>Steven's Webpage</title>
</head>
<body>
<nav class="cd-3d-nav-container">
<ul class="cd-3d-nav">
<li class="cd-selected">
<a href="/about-me/" class="trigger">About Me</a>
</li>
<li>
<a href="/experience/" class="trigger">Experience</a>
</li>
<li>
<a href="/projects/" class="trigger">Projects</a>
</li>
<li>
<a href="/resume/" class="trigger">Resume</a>
</li>
<li>
<a href="/contact/" class="trigger">Contact</a>
</li>
</ul>
<!-- .cd-3d-nav -->
<span class="cd-marker color-1"></span>
</nav>
<!-- .cd-3d-nav-container -->
<header class="cd-header">
<a href="#" class="cd-logo"><img src="img/cd-logo.svg" alt="Logo">
</a>
<a href="#" class="cd-3d-nav-trigger">
Menu
<span></span>
</a>
</header>
<!-- .cd-header -->
<div id="content">
<main>
<div class="background">
<div id="name">施廸陽</div>
<div id="slogan-1">
<div id="first-word">
<span>D</span>
<span>r</span>
<span>i</span>
<span>v</span>
<span>e</span>
<span>n</span>
</div>
<div id="second-word">
<span>T</span>
<span>o</span>
</div>
<div id="third-word">
<span>D</span>
<span>o</span>
</div>
<div id="fourth-word">
<span>M</span>
<span>o</span>
<span>r</span>
<span>e</span>
</div>
</div>
<!--Driven To Do More
<div id="slogan-2" class="rotate">
<div id="first-word">
<span>D</span>
<span>r</span>
<span>e</span>
<span>a</span>
<span>m</span>
</div>
<div id="second-word">
<span>T</span>
<span>o</span>
</div>
<div id="third-word">
<span>D</span>
<span>o</span>
</div>
<div id="fourth-word">
<span>M</span>
<span>o</span>
<span>r</span>
<span>e</span>
</div>
</div>
-->
<!-- Change to "Dream To Do More" as animation -->
</div>
</main>
</div>
<!--
<div id="story">
</div>
<div id="interests">
</div>
-->
<footer>
<ul id="social-icons">
<li>
<a href="http://github.com/steven200796"><img src="/images/buttons/github_round.png" width="48" height="48" alt="GitHub" />
</a>
</li>
<li>
<a href="http://www.linkedin.com/in/steven200796"><img src="/images/buttons/linkedin_round.png" width="48" height="48" alt="LinkedIn" />
</a>
</li>
<li>
<a href="http://www.facebook.com/steven200796"><img src="/images/buttons/facebook_round.png" width="48" height="48" alt="Facebook" />
</a>
</li>
</ul>
</footer>
<!-- #footer -->
<script src="js/jquery-2.1.1.js"></script>
<script src="js/main.js"></script>
<!-- Resource jQuery -->
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function (b, o, i, l, e, r) {
b.GoogleAnalyticsObject = l;
b[l] || (b[l] =
function () {
(b[l].q = b[l].q || []).push(arguments)
});
b[l].l = +new Date;
e = o.createElement(i);
r = o.getElementsByTagName(i)[0];
e.src = 'https://www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e, r)
}(window, document, 'script', 'ga'));
ga('create', 'UA-XXXXX-X', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>