(HPC Cluster Academy)
Created: 2021-07-15 Thu 14:31
Follow along: https://www.gonsie.com/bpw/index.html
1:00 | About Me & Setup |
1:30 | Crash course in HTML & CSS |
2:00 | Markdown & Your Resume |
2:30 | Static Websites |
3:00 | Build Your Website! |
3:30 | Fun! |
/poll "Which editor are you using?" "emacs" "vim" "sublimetext" "atom" "vscode" "web" "other"
A markup language is a system for annotating a document in a way that is syntactically distinguishable from the text.
A style sheet language, or style language, expresses the presentation of structured documents.
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="basic.css"/>
<title>My web page</title>
</head>
<body>
<p class="ugly">This is some text on my webpage</p>
</body>
</html>
body {
color: blue;
}
p.ugly {
border-bottom: 1px dotted #999;
}
Try adding this:
<marquee>Some text</marquee>
# h1 Heading
## h2 Heading
### h3 Heading
---
Emphasis with **bold**, *italic*, or ~~strikethrough~~ text.
> Blockquote for included text
[Also links](http://example.com)
1. Numbered Lists
- Unordered lists
* mixed marks
+ like this
7. Only the first number matters
Support for `inline code` and code blocks:
```
for (int i = 0; i < 100; i++) printf("Hello World!\n");
```
Converters have their own rules.
Practice writing markdown syntax by re-writing your resume in markdown, with the following rules:
resume.md
.md
fileresume.md
file:---
layout: resume
title: "My Awesome Resume"
---
resume.md
file (with the front matter!)<USERNAME>.github.io/jekyll-resume/resume.html
https://gonsie.com https://gonsie.github.io/index.html
username.github.io
username.github.io/repo
README.md
filegithub.com/username
)Created with Emacs, Org Mode, and RevealJS.
View the source.