-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorials.html
More file actions
115 lines (108 loc) · 2.89 KB
/
tutorials.html
File metadata and controls
115 lines (108 loc) · 2.89 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html>
<head>
<title>NPNL Makerspace Tutorials</title>
<link rel="icon" type="image/x-icon" href="../images/favicon.ico">
<style>
h2 {text-align: center;}
table, th, td {
border: 1px solid;
border-collapse: collapse;
}
#table1 th, #table1 td, #table1 tr
{
text-align:center;
border:none;
}
a:link, a:visited {
color: (internal value);
text-decoration: none;
cursor: pointer;
}
hr {
border: 2px solid darkgoldenrod;
}
</style>
</head>
<body style="background-color:rgb(27, 27, 27);">
<table style="width:100%;border:none;" id="table1">
<tr>
<th colspan="2">
<img src="../images/banner.png" alt="Makerspace flyer" width=100% style="float:center">
</th>
</tr>
<tr>
<td style="text-align:center">
<button type="button" style="text-align:center">
<a href="https://npnl.github.io/" style="color:black;font-size:15px" target="_self">
Back to Makerspace
</a>
</td>
<td style="text-align:center">
<button type="button" style="text-align:center">
<a href="https://chan.usc.edu/npnl" style="color:black;font-size:15px" target="_self">
Back to NPNL
</a>
</button>
</td>
</tr>
</table>
<hr>
<h2 style="color:aliceblue;">Tutorials and Resources</h2>
<table style="width:100%;color:aliceblue">
<tr>
<td>
<br><p style="color:lightskyblue"><b>
  3D printers (polymer extrusion). Some examples on how to...
</b></p>
<ul>
<li>
<a href="https://youtu.be/xpT5j2pZVeQ?si=M9k--0BV_I9IXwUL" style="color:cornflowerblue;font-size:15px" target="_blank">
Change Filament
</a>
</li>
<li>
<a href="https://youtu.be/WD_0FlTf3_I?si=CpHRK1pNe_CHmt-5" style="color:cornflowerblue;font-size:15px" target="_blank">
Level Print Bed
</a>
</li>
<li>
<a href="https://youtu.be/c03P3UNRoFE?si=T9buER1DGlC09rOR" style="color:cornflowerblue;font-size:15px" target="_blank">
Unclog the Nozzle
</a>
</li>
</ul>
</td>
</tr>
<tr>
<td>
<br><p style="color:lightskyblue"><b>
  Prototyping electronics. Some tips and tricks...
</b></p>
<ul>
<li>
<a href="https://youtu.be/QKbJxytERvg?si=ngAXAVhhr9pDLsjv" style="color:cornflowerblue;font-size:15px" target="_blank">
Soldering
</a>
</li>
<li>
<a href="https://youtu.be/w0c3t0fJhXU?si=tWokW3-zGkwhQcU3" style="color:cornflowerblue;font-size:15px" target="_blank">
Breadboards and Perfboards
</a>
</li>
</ul>
</td>
</tr>
<!--
<tr>
<td>
<ul>
<li></li>
<li></li>
</ul>
</td>
</tr>
-->
</table>
</body>
</html>