-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (87 loc) · 3.54 KB
/
Copy pathindex.html
File metadata and controls
97 lines (87 loc) · 3.54 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style/fonts.css">
<link rel="stylesheet" href="style/main.css">
<title>Home - Nicholas J. Wan</title>
</head>
<body>
<div id="header" class="w3-container w3-black welcome-bar w3-row">
<div class="w3-third w3-container">
<div id="navButton">
<div class="fa fa-bars" style="font-size: 36px; padding-top: 1.5%"></div>
</div>
</div>
<div class="w3-third">
<h3 class="welcome w3-center">
<a href="http://nicholasjw.com"> Welcome </a>
</h3>
</div>
</div>
<div id="sidebar" class="w3-black">
<ul>
<li style="padding-top: 30px"><a href="#">Requiem</a></li>
<li style="padding-top: 30px"><a href="#">For A</a></li>
<li style="padding-top: 30px"><a href="#">Dream</a></li>
</ul>
</div>
<div id="nameBackground" class="w3-container w3-center">
<h1 class="name-font"> Nicholas J. Wan </h1>
</div>
<div id="overview" class="w3-row overview-container">
<div class="w3-third w3-row">
<div class="w3-half w3-white dropdown">
<h3 class="drop-button">Requiem</h3>
<div class="dropdown-content">
<h3 class="click-box"><a href="#" style="text-decoration: none">Music</a></h3>
<h3 class="click-box"><a href="#" style="text-decoration: none">Guitar</a></h3>
<h3 class="click-box"><a href="#" style="text-decoration: none">Go</a></h3>
<h3 class="click-box"><a href="#" style="text-decoration: none">Hiking</a></h3>
</div>
</div>
<div class="w3-half">
<img src="img/guitar.png" class="w3-half w3-hover-sepia">
</div>
</div>
<div class="w3-third w3-row">
<div class="w3-half w3-white dropdown">
<h3 class="drop-button">For A</h3>
<div class="dropdown-content">
<h3 class="click-box"><a href="#" style="text-decoration: none">PIN-Sniffing</a></h3>
<h3 class="click-box"><a href="#" style="text-decoration: none">urcssa.com</a></h3>
<h3 class="click-box"><a href="#" style="text-decoration: none">Graphic Engine</a></h3>
<h3 class="click-box"><a href="#" style="text-decoration: none">Stegno-Display</a></h3>
</div>
</div>
<div class="w3-half">
<img src="img/net.png" class="w3-half w3-hover-sepia">
</div>
</div>
<div class="w3-third w3-row">
<div class="w3-half w3-white dropdown">
<h3 class="drop-button">Dream</h3>
<div class="dropdown-content">
<h3 class="click-box"><a href="#" style="text-decoration: none">Flora</a></h3>
<h3 class="click-box"><a href="#" style="text-decoration: none">Bro. Fan</a></h3>
<h3 class="click-box"><a href="#" style="text-decoration: none">Chengdu</a></h3>
</div>
</div>
<div class="w3-half">
<img src="img/flora.png" class="w3-half w3-hover-sepia">
</div>
</div>
</div>
<div id="footer" class="w3-display-container w3-black welcome-font" style="height: 100px;">
<p class="w3-display-left"> yunwen.wan@richmond.edu <br/>
+1(804)-625-9947 <br/>
UR 0918 28 Westhampton Way, Richmond, VA, 23173</p>
</div>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.3.1.min.js"></script>
<script src='http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js'></script>
<script src="JavaScript/sidebar.js"></script>
</body>
</html>