-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (85 loc) · 3.06 KB
/
index.html
File metadata and controls
91 lines (85 loc) · 3.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Connor White - Portfolio</title>
<link rel="stylesheet" href="./styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/js/all.min.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#" class="active">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#uni-projects">Uni Projects</a></li>
<li><a href="#tools">Tools</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h1>Connor White</h1>
<p>Electronics | IoT | IT</p>
</section>
<section id="about">
<h2>About Me</h2>
<p>I'm a passionate university student studying Electronic Systems and Internet of Things at James Cook University. I enjoy creating and sharing tools to simplify tasks and improve efficiency.</p>
</section>
<section id="uni-projects">
<h2>Uni Projects</h2>
<p>Explore my university projects across various domains:</p>
<div class="project-categories">
<a href="projects.html#mobile-apps" class="category-card">
<h3>Mobile Apps</h3>
<p>Resistor Calculator, GeoLearnr</p>
</a>
<a href="projects.html#sensor-design" class="category-card">
<h3>Sensor Design</h3>
<p>Capacitive Liquid Level Sensor</p>
</a>
<a href="projects.html#digital-system" class="category-card">
<h3>Digital System</h3>
<p>Tank Game on FPGA</p>
</a>
<a href="projects.html#embedded-system" class="category-card">
<h3>Embedded System</h3>
<p>CNC Driver</p>
</a>
</div>
</section>
<section id="tools">
<h2>Tools</h2>
<div class="tool-grid">
<a href="subject-searcher.html" class="tool-card">
<i class="fas fa-search"></i>
<h3>JCU Subject Searcher</h3>
</a>
<a href="grade-calculator.html" class="tool-card">
<i class="fas fa-calculator"></i>
<h3>JCU Grade Calculator</h3>
</a>
<a href="mtg-counter/index.html" class="tool-card">
<i class="fas fa-heart"></i>
<h3>MTG Life Counter</h3>
</a>
</div>
</section>
<section id="contact">
<h2>Contact Me</h2>
<p>Feel free to reach out to me for collaborations, inquiries, or internship opportunies.</p>
<div class="social-links">
<a href="https://github.com/Connorw-dev" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/connor-white-9a060a259/" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="mailto:cpjwhite@outlook.com"><i class="fas fa-envelope"></i></a>
<a href="tel:0415 600 343"><i class="fas fa-phone"></i></a>
</div>
</section>
</main>
<footer>
<p>© 2024 Connor White. All rights reserved.</p>
</footer>
</body>
</html>