-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
73 lines (66 loc) · 2.95 KB
/
gallery.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gallery</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav>
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="resources.html">Resources</a></li>
</ul>
</nav>
<br>
<p>gallery by cameron mansour</p>
<h1>This is a gallery of my the process through my NFC project.</h1>
<p>1 image credit to adafruit. The rest are taken by Cameron.</p>
<p>This will also showcase the stages of prototyping, and product testing.</p>
<div class="gallery">
<a target="_blank" href="images/portrait_messy_wires.jpeg">
<img src="images/portrait_messy_wires.jpeg" alt="Image of an arduino connected to a
RFID sensor in portrait mode." width="600" height="400" >
</a>
<div class="desc">v1 of the lunch reader, this was the very first version</div>
</div>
<div class="gallery">
<a target="_blank" href="images/close_view_v1.JPG">
<img src="images/close_view_v1.JPG" alt="this is a close up view of an early version
of the sensor.">
</a>
<div class="desc">v1 of the lunch reader, this was a closer view of the
very first version.
</div>
</div>
<div class="gallery">
<a target="_blank" href="images/v2_creditstoadafruit.jpg">
<img src="images/v2_creditstoadafruit.jpg" alt="Image from adafruit of an NFC sheild
on an arduino."width="600" height="400" >
</a>
<div class="desc">This is an updated version of the sensor. I used this
in v2 of my reader. Image credits to adafruit.
</div>
</div>
<div class="gallery">
<a target="_blank" href="images/firsttesterv0.png">
<img src="images/firsttesterv0.png" alt="This is a picture of the reader
being tested for the first time"width="600" height="400" >
</a>
<div class="desc">v0 of the sensor, this was my first tester.</div>
</div>
<div class="gallery">
<a target="_blank" href="images/firstcomputerreadoutofid.png">
<img src="images/firstcomputerreadoutofid.png" alt="image of first output from
id" width="600" height="400" style="text-align: left;" >
</a>
<div class="desc">This was the very first read out of the RFID unique card
id on the computer. Communicated through serial input.
</div>
</div>
</body>
</html>