-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanguages.html
55 lines (47 loc) · 1.8 KB
/
languages.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Main Landing Page</title>
<link rel="stylesheet" href="magetric.css">
</head>
<body>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="hardware.html">Hardware</a></li>
<li><a class="active" href="languages.html">Programming Languages</a></li>
<li><a href="documentation.html">Documentation</a></li>
<li><a href="tutorials.html">Tutorials</a></li>
<li><a href="forums.html">Forums</a></li>
<li><a href="about.html">About Us</a></li>
</ul>
<div id = "wrapper">
<h1>The C Programming Language & Arduino Library Headers</h1>
<h2>Learn to develop on the Arduino platform using the C programming language</h2>
<h3> Tutorials by Magectric will be coming soon</h3>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/The_C_Programming_Language%2C_First_Edition_Cover_%282%29.svg/800px-The_C_Programming_Language%2C_First_Edition_Cover_%282%29.svg.png" alt="KnR - The C Programming Book" class="floatright">
<p>C is one of the founding programming languages that is still very popular and in use today. For the purposes of this site, we'll be focusing on C using the Arduino library.</p>
<p>A great overview of <a href="https://en.wikipedia.org/wiki/The_C_Programming_Language">the C programming language.</a></p>
<p> A developer intro to C on Arduino can be found <a href="https://www.tutorialspoint.com/arduino/index.htm"> here</a>.</p>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<hr>
<footer>Copyright © 2020 Majectric LLC
<br>
<a href="mailto:[email protected]" target="_top">William Blair</a>
<h4>This document was last modified on:
<script>
document.write(document.lastModified);
</script>
</h4>
</footer>
</div>
</body>
</html>