-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.html
116 lines (104 loc) · 4.58 KB
/
Home.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="Style.css">
<title>Miekale Smith's Portfolio</title>
<div class="nav">
<ol>
<li><a href="Home.html#home">HOME</a></li>
<li><a href="Home.html#projects">PROJECTS</a></li>
<li><a href="Home.html#connect">CONNECT</a></li>
</ol>
</div>
</head>
<body>
<section id="home">
<div class="asci">
<img src="media/face_asci.png">
</div>
<div class="titleblock">
<h1>Miekale Smith</h1>
<h2>Interested in Robotics, Software Development and AI</h2><br>
<h3>Mechatronics Engineering at the University of Waterloo</h3>
</div>
<div class="toprojects">
<a href="Home.html#projects">TO MY PROJECTS</a>
</div>
</section>
<section id="projects">
<h1>Projects</h1>
<div class="project-container">
<div class="project">
<a href="Articus.html">
<div class="caption">
<h3>Robotic Image Plotter</h3>
<p>Python - Computer Vision - Robotics</p>
</div>
<img src="media/Articus_Printing.gif" alt="Image Plotter: Articus Maximus">
</a>
</div>
<div class="project">
<a href="ToyotaDesign2023.html">
<div class="caption">
<h3>Toyota Design Challenge 2023</h3>
<p>Python - Computer Vision - Machine Learning</p>
</div>
<img src="media/Toyota_sticker_hole_detection.jpg" alt="Detecting holes VS Stickers">
</a>
</div>
<div class="project">
<a href="Keyboard.html">
<div class="caption">
<h3>Keyboard From Scratch</h3>
<p>KiCad - USB protocol - PCB Design</p>
</div>
<img src="media/keyboard_Main_schematic.png" alt="Schematic of Key Matrix">
</a>
</div>
<div class="project">
<a href="JestureBot.html">
<div class="caption">
<h3>JestureBot - Make UofT 2023</h3>
<p>Python - OpenCV - Arduino</p>
</div>
<img src="media/Jesterbot.jpg" >
<h2>JestureBot</h2>
</a>
</div>
<div class="project">
<a href="OpenMV7.html">
<div class="caption">
<h3>Custom Slimelight Development</h3>
<p>PCB design - Fusion 360</p>
</div>
<img src="media/Slimelight.JPG">
</a>
</div>
<div class="project">
<a href="first_robotics.html">
<div class="caption">
<h3>FIRST Robotics</h3>
<p>Electrical Lead</p>
</div>
<img src="media/2022_robot_top.JPG" alt="2022 Competition Robot">
<h2>4627 FIRST Robotics Team</h2>
</a>
</div>
</div>
</section>
<section id="connect">
<h1>Connect with me!</h1>
<div class="icon-container">
<div class="icon">
<a href="https://www.linkedin.com/in/miekale/"><img src="media/Linkedin_symbol.png" alt="My Linkedin"></a>
</div>
<div class="icon">
<a href="https://github.com/Miekale"><img src="media/Github_symbol.png" alt="My Github"></a>
</div>
<div class="icon">
<a href="mailto:[email protected]"><img src="media/Mail_symbol.png" alt="[email protected]"></a>
</div>
</div>
</section>
</body>
</html>