-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathglossary.html
68 lines (67 loc) · 3.56 KB
/
glossary.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Interactive Media at PSU Fall 2020</title>
<link rel="stylesheet" href="css/meyer-reset.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
</head>
<body class="subpage">
<nav class="nav">
<div class="logo">
<a href="/index.html"
><h4>psuinteractivemedia</h4>
<img src="images/logo.png"
/></a>
</div>
<div class="icon">
<div class="hamburger"></div>
</div>
<div class="menu-mobile">
<ul id="topnavlist"></ul>
</div>
</nav>
<header class="short"></header>
<div class="container">
<main class="glossary">
<article class="terms">
<h1>Terms</h1>
<ul>
<li>
<strong>HTML:</strong> Hypertext Markup Language. The markup language we use to structure our page. html tags look like this:
<pre><p>I'm some text</p></pre>
</li>
<li>
<strong>CSS:</strong> Cascading Stylesheets. The markup language we use to style or pages, including fonts, colors, margin, padding, and layout. CSS looks like this:
<pre>h1 {font-family: 'Helvetica', sans-serif;}</pre>
</li>
<li><strong>Javascript:</strong> A scripting language that, among many other things, lets us manipulate an html page on the fly. Javascript and Java are Completely different languages.</li>
<li><strong>Git:</strong> Git is an application that can run on personal computers as well as servers. It is a versioning control software, meaning it keeps track of changes made to files. It is also a very powerful collaboration tool because many people can work on the same set of files with very little hassle. It is very good at merging mutiple people's changes together. A folder that is tracked by git is called a "repository."</li>
<li><strong>GitHub:</strong> GitHub is a popular server for hosting git repositories (aka folders that git is tracking).</li>
<li><strong>Repo or repository:</strong> Git and github refer to projects as "repos" or "repositories." They are basically folders where all of the files reside. You can't have repositories inside of other repositories.</li>
<li><strong>JQuery:</strong> A library written in Javascript that makes manipulating html and css in a broswer easier than writing it in plain "vanilla" javascript.</li>
<li><strong>CDN:</strong> Content Delivery Network. A server that is really good at delivering content, like images (cloudImage, Amazon CloudFront, cloudinary, cloudflare), code snippets (releases.jquery.com, cdnjs), fonts (google fonts, typekit), or videos (vimeo, youtube)</li>
</ul>
</article>
<aside>
<strong>Key Commands</strong>
<p>note for windows:<br>cmnd = cntrl<br>
opt = alt</p>
<p>
Chrome:<br>
<code>Cmnd+opt+i</code> open dev tools
cmnd+shift+r hard refresh
</p>
</aside>
</main>
</div>
<footer>
<ul id="footernavlist"></ul>
</footer>
<script src="https://code.jquery.com/jquery-3.6.4.min.js" integrity="sha256-oP6HI9z1XaZNBrJURtCoUT5SUnxFr8s3BzRl+cbzUq8=" crossorigin="anonymous"></script>
<script src="/js/script.js"></script>
</body>
</html>