-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.html
48 lines (46 loc) · 1.65 KB
/
resources.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resources</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>
<img src="images/messy_wires.JPG" height="325">
<h1>Here are some useful resources: </h1>
<p>This includes documentation that I used, the box generator I used,
a link to the arduino IDE, and a link to the app I used to program (while
being able to communicate with the COM port.) This is also to ensure your project
doesn't look like the image above.
</p>
<ul style="list-style: inside;">
<li><a href="https://cdn-learn.adafruit.com/downloads/pdf/adafruit-pn532-rfid-nfc.pdf"
target=".blank" style="color: black;">
Documentation for the NFC/ RFID reader (PN532)
</a></li>
<li><a href="https://en.makercase.com/#/basicbox"
target=".blank" style="color: black">
SVG Box generator </a></li>
<li><a href="https://www.arduino.cc/en/software"
target=".blank" style="color: black">
Arduino IDE </a></li>
<li><a href="https://processing.org/download"
target=".blank" style="color: black">
Processing EXE </a></li>
</ul>
<br>
<br>
<p>All links will open in a new tab.</p>
</body>
</html>