forked from issho-online/SLU
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
97 lines (93 loc) · 3.23 KB
/
code.html
File metadata and controls
97 lines (93 loc) · 3.23 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE HTML>
<!--
Read Only by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Code Resources</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body class="is-preload">
<!-- Header -->
<section id="header">
<header>
<span class="image avatar"><img src="images/avatar.jpg" alt="" /></span>
<h1 id="logo"><a href="#">Code Resources</a></h1>
<p>Here you can find resources to help you</br>learn to code</p>
</header>
<nav id="nav">
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="https://github.com/issho-online/SLU/wiki/Contribution-Guide" target="_blank">Contribute</a></li>
</ul>
</nav>
</section>
<h2>Learn to Code</h2>
<!--Add new coding resources here -->
<section id="markdown">
<header>
<h1>Markdown</h1>
</header>
<p>Markdown is a way to style plaintext. It allows you to format webcontent like you are coding.</br> It allows you
to quickly create content without having to worry about formatting afterwards!</p>
<ul>
<li>
<a href="https://www.markdowntutorial.com" target="_blank">Markdown Tutorial</a>
</ul>
</section>
<section id="bash">
<header>
<h1>Bash</h1>
</header>
<p>Bash is the shell, or the command processor of the GNU Operating system.</br>It is used to execute
programs and automate tasks</p>
<ul>
<li>
<a href="https://ryanstutorials.net/bash-scripting-tutorial" target="_blank">Bash Scripting</a>
</ul>
</section>
<section id="css">
<header>
<h1>CSS</h1>
</header>
<p>CSS (Cascading Style Sheets) is every color, animation, gradient, typography, spacing, sizing, layout,</br>
or anything else that makes your site look good</p>
<ul>
<li>
<a href="https://web.dev/learn/css/" target="_blank">Learn CSS</a>
</ul>
</section>
<section id="javascript">
<header>
<h1>Javascript</h1>
</header>
<p>Javascript is the life of a website, it is what makes it work and interactive</p>
<ul>
<li>
<a href="https://javascript.info/" target="_blank">The Modern Javascript Tutorial</a>
</ul>
</section>
<section id="html">
<header>
<h1>HTML</h1>
</header>
<p>HTML is the structure of the web, it is what gives all websites there shape</p>
<ul>
<li>
<a href="https://www.tutorialrepublic.com/html-tutorial/" target="_blank">TutorialRepublic</a>
</ul>
</section>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>