-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (116 loc) · 4.78 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
<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3NHFVTRVLZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3NHFVTRVLZ');
</script>
<script src="script.js"></script>
<title>Zigao's Personal Website</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/x-icon" href="daztab-logo.png" />
</head>
<body>
<div class="fullscreen-image">
<h1 class="welcome-text">Hey! I'm Zigao Wang</h1>
</div>
<header>
<a href="index.html" class="logo">
<img src="daztab-logo.png" alt="Logo" class="logo-image">
</a>
<h1>Welcome to Zigao's Personal Website!</h1>
</header>
<main>
<div class="content">
<div class="profile-section">
<img src="photo.png" alt="Zigao's Photo" class="profile-photo">
<div class="profile-description">
<h2>About Me</h2>
<p>Hello, I am Zigao. I am a passionate front-end developer with expertise in HTML, CSS, and JavaScript. I love creating user-friendly and visually appealing websites.</p>
</div>
</div>
<h2>Skills</h2>
<ul>
<li>HTML5</li>
<li>CSS3</li>
<li>JavaScript</li>
<li>Responsive Web Design</li>
<li>UI/UX Design</li>
</ul>
<h2>Projects</h2>
<div class="project-logos">
<div class="project">
<a href="daztab-lite.html">
<div class="icon">
<img src="daztab-lite-logo.png" alt="DazTab Lite Logo" class="project-logo">
</div>
<h3>DazTab</h3>
</a>
</div>
<div class="project">
<a href="dazcheck.html">
<div class="icon">
<img src="dazcheck-logo.png" alt="DazCheck Logo" class="project-logo">
</div>
<h3>DazCheck</h3>
</a>
</div>
<div class="project">
<a href="dazchrono.html">
<div class="icon">
<img src="dazchrono-logo.png" alt="DazChrono Logo" class="project-logo">
</div>
<h3>DazChrono</h3>
</a>
</div>
<div class="project">
<a href="dazcalc.html">
<div class="icon">
<img src="dazcalc-logo.png" alt="DazCalc Logo" class="project-logo">
</div>
<h3>DazCalc</h3>
</a>
</div>
<div class="project">
<a href="daztab.html">
<div class="icon">
<img src="daztab-logo.png" alt="Daztab Logo" class="project-logo">
</div>
<h3>Daztab (Deprecated Version)</h3>
</a>
</div>
</div>
<h2>Zigao Wang's Personal Blogs</h2>
<p>To view Zigao's Personal Blog, please click <a class="link" href="https://blog.zigaow.com" target="_blank">here</a></p>
<h2>Contact Me</h2>
<ul>
<li>Email: <a class="link" href="mailto:[email protected]">[email protected]</a></li>
<li>GitHub: <a class="link" href="https://github.com/ZigaoWang">ZigaoWang</a></li>
<a href="https://www.buymeacoffee.com/zigao" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important; margin-top:20px;" ></a>
</ul>
</div>
</main>
<footer>
<div class="footer-section">
<h3 class="footer-subtitle">Contact</h3>
<a class="link" href="mailto:[email protected]" target="_blank">Email</a>
<a class="link" href="https://github.com/ZigaoWang" target="_blank">GitHub</a>
<a class="link" href="https://www.buymeacoffee.com/zigao" target="_blank">Donate</a>
<a class="link" href="https://blog.zigaow.com" target="_blank">My Blogs</a>
</div>
<div class="footer-section">
<h3 class="footer-subtitle">Copyright Notice</h3>
<div>© 2023 Zigao's Personal Website. All rights reserved.</div>
<div>For more information, please <a class="link" href="copyright.html" target="_blank">click here</a></div>
</div>
<div class="footer-section">
<h3 class="footer-subtitle">Privacy Policy</h3>
<div>For more information about the privacy policy of Daztab and DazCheck, please <a class="link" href="privacy.html" target="_blank">click here</a></div>
</div>
</footer>
</body>
</html>