-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (46 loc) · 1.53 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Main Landing Page</title>
<link rel="stylesheet" href="magetric.css">
</head>
<body>
<div id = "wrapper">
<header>
</header>
<ul>
<li><a class="active" href="index.html">Home</a></li>
<li><a href="hardware.html">Hardware</a></li>
<li><a 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>
<h1>To The Point Tutorials Landing Page</h1>
<h2>Welcome, one and all</h2>
<p>Hello everyone and welcome to the "To The Point Tutorials Web Page" We are work in progress and will initially be focusing on automating projects using Open Source Arduino hardware and developing on it with the C programming language.</p>
<p> Follow the menu items at the top, and send me an email if you have any projects you'd like to see done. Right now we are concentrating on the above mentioned areas plus we will consider diy projects that allow you to save a lot of money building yourself.
<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>