-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (124 loc) · 5.01 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yitian is cool</title>
<link rel="stylesheet" href="test.css">
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navbar section -->
<nav class="navbar">
<div class="navbar__container">
<a href="index.html" id="navbar__logo">YITIAN GAO</a>
<div class="navbar__toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="navbar__menu">
<li class="navbar__item">
<a href="about_me.html" class="navbar__links">
About
</a>
</li>
<li class="navbar__item">
<a href="interests.html" class="navbar__links">
Interests
</a>
</li>
<li class="navbar__item">
<a href="projects.html" class="navbar__links">
Projects
</a>
</li>
<li class="navbar__btn">
<a href="resume.html" class="button">
Resume
</a>
</li>
</ul>
</div>
</nav>
<!-- Main section -->
<div class="main" id="main">
<div class="main__container" id="main__container">
<div class="main__content">
<h1>Hello!</h1>
<p>This website is a personal project. I find front-end development
interesting because I can actually see my code <span style="color:#ff8177; font-weight:700">DO</span> something. It's very exciting
to see the things that I can already create with the knowledge I have obtained so far.
</p>
</div>
<div class="main__img__container" id="main__image__container">
<img src="images/pic1.jpg" alt="pic" class="main__image">
</div>
</div>
</div>
<!-- Info Section -->
<div class="info">
<div class="info__container">
<ul class="info__list">
<a href="about_me.html" class="info__button">
<div class="info__content">
<h1>About Me</h1>
<p>
Learn about my background and general information here.
</p>
</div>
</a>
<a href="interests.html" class="info__button">
<div class="info__content">
<h1>Interests</h1>
<p>
Learn about my hobbies and interests here.
</p>
</div>
</a>
<a href="projects.html" class="info__button">
<div class="info__content">
<h1>Projects</h1>
<p>
Learn about my past projects here.
</p>
</div>
</a>
<a href="resume.html" class="info__button">
<div class="info__content">
<h1>Experience</h1>
<p>
View my resume here.
</p>
</div>
</a>
</ul>
</div>
</div>
<!-- Footer Section -->
<div class="footer__container">
<ul class="footer__bar">
<li class="footer__item">
<h1 class="footer__header">About</h1>
<a href="about_footer.html" class="footer__links">This Website</a>
<a href="about_footer.html#about_this_website" class="footer__links">The Pictures</a>
<a href="about_footer.html#about_the_pictures" class="footer__links">Special Thanks</a>
</li>
<li class="footer__item">
<h1 class="footer__header">Contact</h1>
<a href="about_footer.html#special_thanks" class="footer__links">Email</a>
<a href="about_footer.html#contact" class="footer__links">Linked In</a>
<a href="about_footer.html#contact" class="footer__links">Phone</a>
</li>
<li class="footer__item">
<h1 class="footer__header">Social</h1>
<a href="about_footer.html#contact" class="footer__links">Facebook</a>
<a href="about_footer.html#social" class="footer__links">Github</a>
<a href="about_footer.html#social" class="footer__links">myCCO</a>
</li>
</ul>
</div>
<script src="app.js"></script>
</body>
</html>