-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (95 loc) · 5.84 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
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<title>Chad Zhao's Website</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<div id="main-wrapper">
<nav id="main-navbar" class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand" href="#">Chad Zhao</a>
<ul class="navbar-nav list-group-horizontal">
<li class="nav-item">
<a class="nav-link" href="https://github.com/CyStorm">Github</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./chadzhao_cv.pdf">CV</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.linkedin.com/in/jian-xiang-chad-zhao">LinkedIn</a>
</li>
</ul>
</div>
</nav>
<div class="container container-fluid">
<h1>Welcome to the Personal Website of Chad Zhao</h1>
<p>This is the website with my personal portfolio, built from stratch with HTML CSS-Bootstrap</p>
</div>
<div class="container container-fluid">
<div class="row about-container">
<div class="col">
<img class="img-fluid portrait" src="./images/portrait.jpg" alt="profile image here">
</div>
<div class="col">
<div class="row">
<h5>About Me</h5>
<p>My name is Chad Zhao and I am currently stydying Computer Engineering at the Universtiy of Waterloo.</p>
<p>I am currently working towards my education and my goal of becoming a Software Engineer.</p>
<p>My passion is to use my skills with the computer and programming to solve compex and challenging problems. I love to combine my career skill of programming and my hobbies such as games, Starcraft 2, Chess, Aerospace and more.</p>
<p>Below you can find links to my Github and LinkedIn, as well as some of the projects that I've worked on. Feel free to just browse my github.</p>
</div>
<div class="row">
<div class="col">
<a class="contact-link" href="https://github.com/CyStorm">
<img class="contact-logo" src="./images/github_logo.png" alt="github_logo">
</a>
</div>
<div class="col">
<a class="contact-link" href="https://www.linkedin.com/in/jian-xiang-chad-zhao-4b6663161/">
<img class="contact-logo" src="./images/linkedin_logo.png" alt="linkedin_logo">
</a>
</div>
</div>
</div>
</div>
</div>
<div id="project-container" class="container container-fluid">
<div class="row">
<div class="col">
<div class="card project-card h-100 mx-auto">
<img src="./images/sc2bot.jpg" class="card-img-top" alt="project image">
<div class="card-body d-flex flex-column">
<h4 class="card-title">Python SC2 Bot</h4>
<p class="card-text">Scripted bot that plays Starcraft 2, using python. Can beat the hardest computer opponent (and some of my friends too). Currently working on a bot that uses Machine Learning and not scripted</p>
<a href="https://github.com/CyStorm/python_scripted_sc2bot" class="btn mt-auto project-button">Github Code</a>
</div>
</div>
</div>
<div class="col">
<div class="card project-card h-100 mx-auto">
<img src="./images/discord_bot.png" class="card-img-top" alt="project image">
<div class="card-body d-flex flex-column">
<h4 class="card-title">Discord Bot</h4>
<p class="card-text">Bot that retrieves information from various APIs, and has miscellaneous features such as chess game between users, helping to choose a restaurant among some options. Made with python and discord.py</p>
<a href="https://github.com/CyStorm/chad_discord_bot" class="btn mt-auto project-button">Github Code</a>
</div>
</div>
</div>
<div class="col">
<div class="card project-card h-100 mx-auto">
<img src="./images/chess.jpg" class="card-img-top" alt="project image">
<div class="card-body d-flex flex-column">
<h4 class="card-title">Chess Engine</h4>
<p class="card-text">Simple python chess engine that uses some simple algroithms, also at the same time an exercise with pygame and game development</p>
<a href="https://github.com/CyStorm/chess_engine" class="btn mt-auto project-button">Github Code</a>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>