Featured Guides
How to Set Up and Host Your Personal Webpage at CSU
This guide is a knowledge-sharing initiative to assist fellow graduate students and faculty at Colorado State University in building and hosting personal webpages. These steps are based on my experience and are provided as-is. For technical issues, please reach out to Engineering Technology Services (ETS).
Part 1: Setting Up Your Account and Files
Step 1: Open Your CSU Engineering Account
- Go to CSU Account Setup and create or view your Engineering account.
- Follow the instructions to log in or set up your account.
Step 2: Connect via VPN
- Download and install GlobalProtect VPN for secure remote access.
- Log in using your CSU credentials before accessing Engineering resources.
Step 3: Map Your Network Drive
- Follow these instructions to map your network drive.
- Once mapped, your drive (e.g., Z:) will be accessible through File Explorer.
Step 4: Set File Permissions
- Adjust file permissions to make your webpage files publicly accessible.
- Ensure permissions are set correctly; otherwise, your pages won't be viewable.
Step 5: Upload Your Files
- Navigate to your
public_htmlfolder in the mapped network drive. - Copy your HTML, CSS, and related files into this directory.
Part 2: Designing and Structuring Your Webpage
Step 1: Choose an HTML Editor
- Download CoffeeCup Free HTML Editor or use alternatives like Sublime Text or Visual Studio Code.
Step 2: Create Your Webpage
- Create a file named
index.htmlusing your editor. - Follow CSU Branding Guidelines for colors, fonts, and logos.
Step 3: Test and Publish
- Test your HTML locally in a browser.
- Upload files to your mapped drive and access them at:
http://www.engr.colostate.edu/~yourusername/.
Step 4: Add Content
- Create new pages for tutorials or research content and link them in your navigation menu.
- Example of linking:
<nav> <ul> <li><a href="tutorials.html">Tutorials</a></li> <li><a href="research.html">Research</a></li> </ul> </nav>
Step 5: Make It Mobile-Friendly
- Ensure responsiveness with CSS media queries. Example:
@media screen and (max-width: 768px) { body { font-size: 14px; } }
Feel free to explore and download the CSS, HTML, and README package to start customizing your personal webpage.
Useful Resources
Disclaimer
This guide is a knowledge-sharing initiative based on personal experience to assist fellow graduate students and researchers at CSU/SE. Please note:
- Steps are shared as-is and may not universally apply.
- Verify steps with official CSU resources before proceeding.
- I am not responsible for any outcomes or errors arising from these instructions.
