-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (78 loc) · 1.74 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
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="./stylesheets/default.css">
<meta charset="UTF-8">
<title>dyslexic Bolg</title>
</head>
<body>
<nav>
<center>
<a href="/portfolio/">portfolio</a> |
<a href="/Resume/">Resume</a> |
<a href="/Bio/">Bio</a> |
<a href="/Blog/">Blog</a> |
<a href="tendoncs.github.io/contact.html">Contact</a>
</center>
</nav>
<img src="imgs/Alex.png">
<!-- Side bar -->
<aside>
<ul>
<li>
<a href="#">Content</a>
<ul>
<li>
<a href="http://tendoncs.github.io/blog/css-concepts.html">Display: Inline vs Inline block</a>
</li>
<li>
<a href="http://tendoncs.github.io/blog/arrays-hashes.html">Arrays and Hashes</a>
</li>
<li>
<a href="http://tendoncs.github.io/blog/enumerable-methods.html">Enumerable map</a>
</li>
<li>
<a href="http://tendoncs.github.io/blog/JavaScript.html">Wrath of semicolon</a>
http://tendoncs.github.io/blog/JavaScript.html
</li>
</ul>
</li>
<li><a href="#">Best Tools</a></li>
<ul>
<li>
<a href="#">Articles</a>
<ul>
<li>
<a href="#">Articles 1</a>
</li>
<li>
<a href="#">Articles 2</a>
</li>
<li>
<a href="#">Articles 3</a>
</li>
</ul>
</li>
<li>
<a href="#">Tool 2</a>
</li>
</ul>
</li>
</ul>
</aside>
<section>
<h1>Blog Title goes here</h1>
Start of my blog for this paragraph.
<br><br>
Second Paragraph of my blog.
<br><br>
Wait there is a thrid paragraph on my blog.
<br>
<br>
Written by
<br>
Alex Williams
</section>
</article>
</body>
</html>