-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (89 loc) · 3.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My GitHub Page</title>
<meta charset="UTF-8">
<meta name="description" content="Portfolio">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="Jian Zhou">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Jian Zhou</h1>
<p>Software Developer & HPC Enthusiast</p>
</header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<main>
<section id="about">
<h2>About Me</h2>
<p>Hi there! I'm a software developer passionate about creating elegant solutions to complex problems. With
experience in full-stack development and a love for high performance computing, I'm always looking to
learn and contribute to meaningful projects.</p>
</section>
<section id="projects">
<h2>Featured Projects</h2>
<div class="project-grid">
<div class="project-card">
<h3>Chinatown</h3>
<p>A social mobile app developed with low cost web technology (SUID and Capacitor), featuring
real-time updates and private secure messaging.</p>
<p>
<a href="https://azurewood.github.io/rataland/">Details</a>
</p>
</div>
<div class="project-card">
<h3>Weather NZ</h3>
<p>An open-source project that simplifies data visualization for NZ climate, used by outdoors
workers in Otago.</p>
<p>
<a href="https://weather-nz.vercel.app/">Details</a>
</p>
</div>
<div class="project-card">
<h3>pNorm Visualisation</h3>
<p>The foundation of Artificial Intelligence studies p-norm realm for mathematical modelling. This
program produces fine grained images by using advanced Python libraries.
</p>
<p>
<a href="https://github.com/Jian-Zhou-1163478/pNorm">Details</a>
</p>
</div>
<div class="project-card">
<h3>Links</h3>
<p>Other projects listed below.
</p>
<p>
<a href="https://jianzhou1163478.pythonanywhere.com/">Te Waihora farm management
simulator</a></br>
<a href="https://github.com/azurewood/capacitor-plugin-backswipe">Capacitor backswipe
plugin</a></br>
<a href="https://github.com/azurewood/sky">Sky secure messaging</a></br>
<a href="https://apps.apple.com/gb/app/sky-indicator-lite/id6467558483">Sky Indicator Lite (App
Store)</a></br>
</p>
</div>
</div>
</section>
<section id="contact">
<h2>Get in Touch</h2>
<p>I'm always interested in hearing about new projects and opportunities. Feel free to reach out!</p>
<div class="social-links">
<a href="https://github.com/azurewood">GitHub</a>
<a href="https://www.linkedin.com/in/jian-zhou-8a7b4550">LinkedIn</a>
<a href="mailto:[email protected]">Email</a>
</div>
</section>
</main>
<footer>
<p>© 2025 Jian Zhou. Built with ❤️ using GitHub Pages.</p>
</footer>
</body>
</html>