-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (75 loc) · 3.31 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
<title>Clark Zhang's Website</title>
</head>
<body>
<nav class="navbar">
<div class="logo">Clark Zhang</div>
<a class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="navbar-links">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#fun">Fun</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<div class="container-fluid">
<h2>About Me</h2>
<section class="about-section" id="home">
<img src="img/headshot.png" class="me">
<p>
Hello! I'm an undergraduate student studying computer science at the University of Toronto.
Currently, I am working on some front-end projects such as this one,
but I hope to become a full-stack developer someday!
</p>
</section>
<h2> Projects </h2>
<section class="project-section" id="projects">
<article>
<a href = "https://github.com/czhang0312/TicTacToe">
<img src="img/website.png" id="website">
</a>
<div>
<h3>Personal Website</h3>
<p>I created this project from scratch (no templates) using HTML, CSS, and JS. Some cool
cool features include a hamburger menu for the navbar when the window is small enough.
</p>
</div>
</article>
<article>
<a href = "https://github.com/czhang0312/TicTacToe">
<img src="img/tictactoe.png" id="tictactoe">
</a>
<div>
<h3>Tic Tac Toe</h3>
<p>This project is my first front-end project I built using only HTML, CSS and JS. I used CSS tables to create the game board and coded the game mechanics
using Javascript. I learned a lot about how HTML, CSS and JS interact with each other to create the game.
</p>
</div>
</article>
</section>
<section class="fun-section" id="fun">
<h2> Fun </h2>
<p> I enjoy working out, snowboarding, and watching TV shows! </p>
</section>
<section class="contact-section" id="contact">
<h2> CONTACT </h2>
<p> Reach me at [email protected]</p>
<a href="https://github.com/yoona3877"
target="_blank">
<i class="fa fa_flag fa-github" style="font-size:30px">
</i>
</a>
</section>
</div>
</body>
</html>