Log into glitch.com. If you are successfully logged in, then you will see something like this.
If not, click on dashboard
, and then click on one of the projects you have here on its title as the arrow indicates.
You will be taken to this page that has all your glitch portfolio pages.
On the left, the red
part is all your files and code. On the right, the blue
part the preview of your actual portfolio website. The green
part is the url of your website that you should copy and paste it into canvas when you submit your assignments.
If you donāt see the blue and green part. Then you will need to hit on the preview
button down here first, and then hit on open preview pane
, then you should able to see what is shown above.
On the left you should already have a bunch of files thatās called p01.html
, p02.html
... If your assignment is assignment 1, then you should put your project in p01.html
. If you project is assignment 2, then you should put it in p02.html
... etc.
<aside> āš» How do I know which assignment is which? You can look them up here: https://parsonsdt.github.io/critical-computation-2023/assignments.html
You can click on any of them to edit the code on that specific page.
</aside>
If you donāt have the html
file for that page, you can make one.
First hit the plus sign, next to Files
Then type in the name of the file you want to make, make sure itās something like xxx.html
. It has to end with the word .html
After youāre done, hit add this file.
You will be taken to the new file. It should be completely blank.
You can copy the template provided here to make the new page.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Your Name | CC Portfolio</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="style.css" />
<!-- import the webpage's javascript file -->
<script src="/script.js" defer></script>
</head>
<body>
<!-- navigation menu -->
<nav></nav>
<!-- main content -->
<main>
<p>
Coming soon
</p>
</main>
</body>
</html>