For the HTML/CSS assignments in this class, you’ll be publishing your work on GitHub pages.
This assignment will serve two purposes:
You will learn how to publish your work on GitHub pages. (Follow the tutorial here.)
I will have your GitHub account username, so you won’t need to submit your URL to Canvas every time. (More on this later; it’ll make more sense when you publish the next HTML assignment.)
The assignment instructions are very simple, but it may take you a while if you have no experience with GitHub—which I believe is not the case for most of you. Either way, don’t worry, it’s not complicated, just follow the steps on the tutorial.
Grab the following code:
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<title>GRC 338: Hello world assignment</title>
</head>
<body>
<h1>Hello world</h1>
</body>
</html>
Publish it on the URL username.github.io/grc338/helloworld, where username will be your actual GitHub username. (Again, it’s all on the tutorial.)
Submit your full URL to Canvas.
Check canvas for deadlines.