-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
99 lines (90 loc) · 3.81 KB
/
portfolio.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
<!DOCTYPE html>
<html>
<head>
<title>William Wang's Bio</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="assets/reset.css">
<link rel="stylesheet" type="text/css" href="assets/style.css">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a class="name navbar-brand" href="#">William Wang</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- end of nav -->
<div class="container">
<div class="row">
<div class="aboutme col-sm-6"> <!-- outside box -->
<div class="row"> <!-- first row -->
<div class="header1 col-sm-12">
<h2>Portfolio</h2>
</div>
<br>
<br>
</div> <!-- end of first row - -->
<hr>
<div class="row"> <!-- second row -->
<div class="col-sm-6">
<div class="image">
<a href="https://infinite-forest-95332.herokuapp.com/"><img src="images/burger.jpg" class="img-thumbnail" style="width: 150px; height: 150px;" alt="Burger">
<h5><span class="label label-success">SequelizedBurger<span></h5>
<br>
</div>
<div class="image">
<a href="https://cxwang001.github.io/TriviaGame/"><img src="images/Trivia.jpg" class="img-thumbnail" style="width: 150px; height: 150px;" alt="Trivia">
<h5><span class="label label-success">Trivia Game<span></h5>
<br>
</div>
<div class="image">
<a href="https://gentle-crag-65419.herokuapp.com/"><img src="images/React.jpg" class="img-thumbnail" style="width: 150px; height: 150px;" alt="Rock_Paper_Scissors">
<h5><span class="label label-success">(ReactJS) New York Times<span></h5>
<br>
</div>
</div>
<div class="col-sm-6">
<div class="image">
<a href="https://anishdabade.github.io/project-01/"><img src="images/Tindoor.jpg" class="img-thumbnail" style="width: 150px; height: 150px;" alt="RPG">
<h5><span class="label label-success">Tindoor App<span></h5>
<br>
</div>
<div class="image">
<a href="https://warm-wave-39556.herokuapp.com/"><img src="images/Razzle.jpg" class="img-thumbnail" style="width: 150px; height: 150px;" alt="Razzle">
<h5><span class="label label-success">Razzle<span></h5>
<br>
</div>
</div>
</div> <!-- end of second row -->
</div>
<div class="col-sm-1"></div> <!-- empty column -->
<div class="panel col-sm-5">
<div class="contactme">
<h2>Connect With Me</h2>
<br>
<br>
<p>
<a href="https://github.com/cxwang001" target=_blank>
<img src="images/GitHub_logo.png" width="60px"; height="60px"></a>
<a href="https://www.linkedin.com/in/williamcxwang" target=_blank>
<img src="images/LinkIn_logo.jpg" width="60px"; height="60px"></a>
</p>
</div> <!--end contactme -->
</div> <!--end panel -->
</div>
</div>
<footer class="footer">
<div class="container">
© Copyright 2017 William Wang
</div>
</footer> <!--end footer -->
</body>
</html>