-
Notifications
You must be signed in to change notification settings - Fork 0
/
components.html
80 lines (61 loc) · 2.24 KB
/
components.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
<html>
<title> Project </title>
<!-- Head van webpagina-->
<head>
<link rel="stylesheet" href ="stylesheet.css"> <!--Use stylesheet described-->
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Karma">
<meta charset="UTF-8"> <!-- Use charset described, rocket in footer!!-->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-S07DSFCEZ7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-S07DSFCEZ7');
</script>
</head>
<!-- Body van webpagina-->
<body>
<header>
<div class="navbar">
<a href="index.html">Home</a>
<a href="projects.html">Projects</a>
<a href="components.html">Components</a>
<a href="makers.html">Makers</a>
<a href="upload.html" class="split">Upload your own project!</a>
</div>
</header>
<div align="center">
<br><br>
<h2>Components tutorials</h2>
<br><br>
</div>
<div class="centeredProjects">
<div id = "componentsOverview"> </div>
</div>
</div>
<footer>
<div class="container footer">
<div align="center">
<p3 id="footerLogoText">Built with a ♡ for technology near Antwerp, Belgium</p>
<div class="socialButtons responsiveAlign">
<a href="https://www.instagram.com/tech_projects/" class="noPadding">
<img src="Assets/Footer_Icons/Instagram.svg" alt="image1">
</a>
<a href="https://www.facebook.com/arduinprojects/" class="noPadding">
<img src="Assets/Footer_Icons/Facebook.svg" alt="image1">
</a>
<a href="https://www.reddit.com/r/Arduinoprojects" class="noPadding">
<img src="Assets/Footer_Icons/Reddit.svg" alt="image1">
</a>
<a href="https://www.youtube.com/channel/UCHonVls7YapWvZEDi5Wf8OA?view_as=subscriber" class="noPadding">
<img src="Assets/Footer_Icons/Youtube.svg" alt="image1">
</a>
</div>
</div>
</div>
</footer>
<script src="componentsScript.js"></script>
</body>
</html>