-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathresources.html
More file actions
45 lines (44 loc) · 1.31 KB
/
resources.html
File metadata and controls
45 lines (44 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>OpenCode Web Development Fundamentals - Resources</title>
<meta name="generator" content="BBEdit 10.5" />
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Resources</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="reference.html">HTML Reference</a></li>
<li><a href="css.html">Styling Reference</a></li>
<li><a href="resources.html">Resources</a></li>
</ul>
</nav>
</header>
<main>
<h1>References</h1>
<h2>Tools</h2>
<h3>Windows</h3>
<ul>
<li>Text Editor - <a href="https://notepad-plus-plus.org/" target="_blank">NotePad++</a></li>
<li>Git Client - <a href="https://tortoisegit.org/" target="_blank">TortoiseGit</a></li>
</ul>
<h2>HTML</h2>
<ul>
<li><a href="https://dev.w3.org/html5/html-author/charref">Character References</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/HTML5">HTML5</a></li>
<li><a href="http://www.w3.org/TR/html5/">W3 - HTML5</a></li>
</ul>
<h2>CSS/Styling</h2>
<ul>
<li><a href="http://alistapart.com">A List Apart</a></li>
<li><a href="https://www.smashingmagazine.com">Smashing Magazine</a></li>
</ul>
</main>
<footer>
</footer>
</body>
</html>