-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (87 loc) · 4.37 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
<!DOCTYPE html>
<html lang = "en-US">
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<!-- Broswer Tab Title -->
<title>Mainpage - S.Zhou</title>
<!-- CSS style sheet below -->
<link rel="stylesheet" href="main.css">
<!-- Used to scale for mobile applications -->
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h1>Shouyang Zhou</h1>
<!--Nav Bar-->
<div id ="navheader"><hr>Stuff is still loading</div>
<script >$("#navheader").load("header.html");</script>
<div class="row">
<div class="col-md-12">
<div class="container_centered">
<p><img class="img-circle" src= "Images/profile.jpg" style="margin: auto; width:80px;">
<br>This is the personal website of Shouyang "Daniel" Zhou.
<br> For now the site hosts my resume and it's supplimental documents. As it currently stands this website will link to any other accounts related to work that I find useful to display to you, the viewer.
<br><br>As it currently stands this website will be a web development of mine. Suprisingly much of the framework for this site is done over the course of a single day, from zero html experience to here and now. This website is largely designed using html and css.
<br><br> Things done so far:
<br><br> Resume formatted as webpage
<br> Relevant documents section
<br> Projects section
<br> <br> To Do:
<br> Improve html readability with comments
<br> Add some project pages.
<br> Maybe even have endless (sort of) scrolling!
<!-- Most Recent Project Post -->
<h3>Most Recent Project Posts</h3>
</div>
</div>
</div>
<!-- Bootstrap Row Object -->
<!-- 1x4 Holding Array for up to 5 articles / blog posts drawn from the projectsub folder. -->
<div class="row">
<!-- Bootstrap Column Object -->
<div class="col-md-3">
<div id ="showcase_general_1">Stuff is still loading</div>
<!-- jQuery Load Command Used To Insert Blog Posts-->
<script>$("#showcase_general_1").load("projectsub/general/showcase_1.html");</script>
<div id ="showcase_general_2">Stuff is still loading</div>
<script>$("#showcase_general_2").load("projectsub/general/showcase_2.html");</script>
<div id ="showcase_general_3">Stuff is still loading</div>
<script>$("#showcase_general_3").load("projectsub/general/showcase_3.html");</script>
</div>
<!-- Bootstrap Column Object -->
<div class="col-md-3">
<div id ="showcase_CS_1"></div>
<script>$("#showcase_CS_1").load("projectsub/CompSci/cs_showcase_1.html");</script>
<div id ="showcase_CS_2"></div>
<script>$("#showcase_CS_2").load("projectsub/CompSci/cs_showcase_2.html");</script>
<div id ="showcase_CS_3"></div>
<script>$("#showcase_CS_3").load("projectsub/CompSci/cs_showcase_3.html");</script>
</div>
<!-- Bootstrap Column Object -->
<div class="col-md-3">
<div id ="showcase_F_1"></div>
<script>$("#showcase_F_1").load("projectsub/Finance/f_showcase_1.html");</script>
<div id ="showcase_F_2"></div>
<script>$("#showcase_F_2").load("projectsub/Finance/f_showcase_2.html");</script>
<div id ="showcase_F_3"></div>
<script>$("#showcase_F_3").load("projectsub/Finance/f_showcase_3.html");</script>
</div>
<!-- Bootstrap Column Object -->
<div class="col-md-3">
<div id ="showcase_M_1"></div>
<script>$("#showcase_M_1").load("projectsub/MilSci/m_showcase_1.html");</script>
<div id ="showcase_M_2"></div>
<script>$("#showcase_M_2").load("projectsub/MilSci/m_showcase_2.html");</script>
<div id ="showcase_M_3"></div>
<script>$("#showcase_M_3").load("projectsub/MilSci/m_showcase_3.html");</script>
</div>
</div>
<!-- Imports Footer -->
<div id ="footer">Footer</div>
<script >$("#footer").load("footer.html");</script>
</body>
</html>