-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechdoc.html
More file actions
76 lines (71 loc) · 2.4 KB
/
techdoc.html
File metadata and controls
76 lines (71 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<style>
nav a {
display: inline block;
text-decoration: none;
padding: 0px;
}
</style>
<head>
<meta charset="utf-8">
<meta name="Technical Doc" content="a page for a navigation code">
<title>My Technical Document Page</title>
</head>
<body>
<hr style="border: 1px solid black;">
<nav style="position: fixed; top:0; left:0; width: 200px; height: 100%;">
<h1 style="padding-left: 10px;">Technical Doc</h1>
<ul>
<li><a href="#html">HTML</a></li>
<li><a href="#video games">Video Games</a></li>
<li><a href="#nature">Nature</a></li>
<li><a href="#space">Space</a></li>
<li><a href="#new york">New York</a></li>
</ul>
</nav>
<main class="verticle" style="margin-left: 250px;
top: 0;
padding: 20px;">
<section id="html">
<article>
<h3 style="background: black; color: white">HTML</h3>
<p>This is some content about how to create a nav tag in html.</p>
</article>
</section>
<section id="video games">
<article>
<h3 style="background: black; color: white">Video Games</h3>
<p>Background information before getting into the topic:</p>
<ul>
<li>Some list content</li>
<li>What you should already know</li>
<li>Workings and assumptions</li>
</ul>
<p>Any other content to be covered before learning this topic</p>
</article>
</section>
<section id="nature">
<article>
<h3 style="background: black; color: white">Nature</h3>
<p>More info about the top. For example, how the basic features work, etc...</p>
<p>Technical documentation should be thorough and to the point</p>
<p>Write about features and comparisons with other languages etc</p>
</article>
</section>
<section id="space">
<article>
<h3 style="background: black; color: white">Space</h3>
<p>Getting started with the actual documentation content var greeting = "Hello Redness";</p>
</article>
</section>
<section id="new york">
<h3 style="background: black; color: white">New York</h3>
<article>
<p>Another awesome topic about the main topic, for example, this could be variables or data types in JavaScript.
</p>
</article>
</section>
</main>
</body>
</html>