-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (71 loc) · 4.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./assets/style-2.css">
<title>Prework Study Guide</title>
<button id="toggleButton1">✨Click to show secret menu options!✨</button>
</head>
<body>
<header id="top">
<h1>Prework Study Guide</h1>
<img src="./assets/bowtie-cat.png" alt="bowtie-cat"/>
<h2>✨ Open the Console to See What's Happening ✨</h2>
</header>
<main>
<section class="card" id="html-section">
<h2>HTML</h2>
<ul>
<li>The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in a web browser.</li>
<li>HTML defines the content and structure of web content for integration with CSS and JavaScript.</li>
<li>The head element contains information about the webpage.</li>
<li>The body element represents the visible content shown to the user.</li>
<li>The HTML file contains the HTML data, which brokers the information from the .css file and .js files</li>
<li>The head element of the HTML data is where the .css file link is created</li>
<li>The body element of the HTML data is where the .js file link is created</li>
<li>HTML Colors can be hash values or sematic references</li>
<a href= "https://htmlcolorcodes.com/"> HTML color reference</a>
</ul>
</section>
<section class="card" id="css-section">
<h2>CSS</h2>
<ul>
<li>Cascading Style Sheets (CSS) is a style sheet language used for specifying the presentation and styling of a document written in a markup language such as HTML or XML.</li>
<li>CSS primary purpose is to style the webpage and improve the UI/UX experience for the consumer</li>
<li>CCS features and properties such as margin indicates how much space we want around the outside of an element.</li>
<li>According to CSS standards padding indicates how much space we want around the content inside an element.</li>
</ul>
</section>
<section class="card" id="git-section">
<h2>GIT</h2>
<ul>
<li>Git is a distributed version control system that tracks changes in any set of computer files.</li>
<li>Git is primarily used for managing local repositories and reconciling with the main branch for group development projects.</li>
<li>Git is used to track changes in sets of computer files and is operated through a terminal GUI</li>
<li>GitBash is a product that allows users to execute local git commands so that developers and engineers can send changes to the main branch located in a GitHub repository</li>
<li>Git can be executed via CMD terminal, GitCMD and GitBash, however some commands such as creating files, may require the use of GitBash.</li>
<a href="https://training.github.com/downloads/github-git-cheat-sheet.pdf">Git Cheat Sheet Link</a>
</ul>
</section>
<section class="card" id="javascript-section">
<h2>JavaScript</h2>
<ul>
<li>JavaScript is a programming language and core technology of the World Wide Web, alongside HTML and CSS</li>
<li>JavaScript adds functionality and interactability to a webpage.</li>
<li>A variable is a named container that allows us to store data in our code.</li>
<li>Control flow is the order in which a computer executes code in a script.</li>
<li>98.9% of websites use JavaScript on the client side for webpage behavior!</li>
<li>JavaScript data is contained in a .js file that is linked to a web page's html data in a "script" element.</li>
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures"> DataStructures Reference </a>
<a href ="https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/JavaScript_basics"> JavaScript Basics Reference</a>
</ul>
</section>
</main>
<footer>
<p>I can Code!</p>
</footer>
<script src="./assets/script-master.js"></script>
</body>
</html>