WARNING: THIS WEBSITE IS A WORK IN PROGRESS PLEASE DO NOT SOLELY RELY ON THIS WEBSITE FOR ASSIGNMENT INSTRUCTIONS. PLEASE USE THE OFFICIAL SOURCE (CANVAS)
Loading...
WIN + E)ViewShowFile name ExtensionsCMD + ,)AdvancedShow all filename extensionsWe recommend using Visual Studio Code (VS Code) which can be downloaded here.
If you install Visual Studio Code please download the Live Server Extension from the Extensions Marketplace
We recommend using FileZilla, which can be downloaded here.
You can download the VPN from here
Login:Note: Replace the bolded parts with your university provided login
- Username: Niner_Net_username@charlotte.edu
- Password: Niner_Net_password
You can download GitHub Desktop from here.
Note: You do not need to use GitHub Desktop and may use another Git Client or use the Git CLI. We recommend it as not everyone is familiar with git and CLI tools. But Instructions will assume that you installed it.
WARNING: If you do not name your repository exactly like that your webpage will not work.
Example: My GitHub username is alexandernc0043 so my repository should be named alexandernc0043.github.ioindex.html.! and hit Tab or Enter on your keyboard.<!-- USERNAME.github.io/index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>Document inside this element <title>Document</title> with [YOUR_NAME] [Divider] HomepageExample(s):<title>Alexander Prechtel | Homepage</title> <title>Alexander Prechtel ~ Homepage</title> <title>Alexander Prechtel - Homepage</title>
body element add a Heading 1 element (h1) and put the following:<body>
<h1>Welcome to my homepage!</h1>
</body>a ) after your heading 1 element that will take you to your course page.<a href="itis3135">Click here to go to my ITIS-3135 course page!</a>Your body should now look like this:<!-- USERNAME.github.io/index.html --> <body> <h1>Welcome to my homepage!</h1> <a href="itis3135">Click here to go to my ITIS-3135 coursepage!</a> </body>
itis3135Note: in the future your GITHUB_USER_NAME.github.io folder will be referred to as the "root" of your website
itis3135 folder create a new file called index.htmlindex.html file inside your itis3135 folder.index.html inside the root of your website and paste it into your newly created index.html file inside your itis3135 folder.a)homepage with ITIS-3135 course pageYour newindex.htmlfile should look like this now:<!-- USERNAME.github.io/itis3135/index.html --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Alexander Prechtel | ITIS-3135 Course page</title> </head> <body> <h1>Welcome to my ITIS-3135 course page!</h1> </body> </html>
Note: GitHub won't track folders with no files inside. You can add a README.md file if you want to have it be tracked but that's not required.
Note: This can take up to 10 minutes to provision.
Example: https://webpages.charlotte.edu/aprechte
Note: If you are off campus you will need to use the Cisco Secure VPN you installed in previous steps. Inside the box when opening Cisco Secure Client you will type vpn.charlotte.eduthen Login with your NinerNet account details.
Host: webpages.charlotte.edu
Username: YOUR_NINER_NET_USERNAME DO NOT INCLUDE @charlotte.edu
Password: YOUR_NINER_NET_PASSWORD
Port: 22
Once you are connected you should see your computer's files on the left and the server's on the right
public_html folder.publc_html/index.html folder on the server side inside your root/itis3135/archive folderindex.html in the root of your website anditis3135 folder into the public_html folder on the server side.Please submit the following
Note: your university webpage and GitHub webpage should/need to be identical.
Example: https://webpages.charlotte.edu/aprechte/itis3135/
Example: https://github.com/alexandernc0043/alexandernc0043.github.io