Forget everything intimidating you have heard about web development. By the end of this section you will have written real code, pushed it to GitHub, and understood exactly what happens when someone visits a website.
Hi, I'm building things on the internet.
<h1> <p> <a>Every website visit triggers an invisible sequence of events in under a second. Let's slow it down.
Like a street address, but for data living on a computer somewhere in the world.
Computers use IP addresses like 142.250.80.46. DNS is a massive phone book that translates google.com to that number instantly.
HTML (structure), CSS (style), JavaScript (behavior). Your browser reads all three and draws the page you see.
When a customer in Beckley searches 'pizza near me', that search hits Google's DNS, resolves to a server, and returns HTML. If your WV pizzeria's site loads fast and is built right, you show up. This curriculum teaches you how to build that site.
HTML labels text so the browser knows what each piece is :: heading, paragraph, image, link. Every website on earth is built on it.
<!DOCTYPE html> <html> <head> <title>My WV Page</title> </head> <body> <h1>Hello from West Virginia!</h1> <p>Built with code, right here in the Mountain State.</p> </body> </html>
Every browser has a built-in tool that lets you see the HTML and CSS behind any website. Right-click → Inspect, or press F12. This is how developers learn :: by looking at things that already exist.
See something cool on a WV business site? Open DevTools, copy the HTML, paste into Claude and ask "Explain what this does." Instant free lesson from any site.
The builder workflow: describe what you want → Claude writes the code → you review, test, and direct. You don't memorize syntax. You describe outcomes.
Write me a simple HTML "about me" page. Include: - A heading with my name: [YOUR NAME] - A short bio: [2 sentences about you] - An unordered list of 3 hobbies - Where I'm from in West Virginia: [your town/county] Add a comment above each section explaining what it does. I'm a beginner.
You wrote your first HTML file. Before anything else :: save it to GitHub. This is the habit that defines professional developers. Start it today.
Save index.html inside a week1/ subfolder inside your repo folder.
GitHub Desktop watches your folder constantly. New or modified files appear automatically in green or yellow.
Try: "Add Section 1 about me page HTML". Click Commit. This takes a permanent snapshot.
Your file is now live at github.com/yourname/m0ntan1-academy-projects. That's your first public code.
Every commit you push fills in a square on your GitHub activity graph. By Section 12 that graph tells a story :: a West Virginian who showed up and built things, week after week. That story is worth more than a résumé.
Build me a complete, valid HTML "About Me" page for someone from [your town], West Virginia. Name: [YOUR NAME] · Bio: [YOUR BIO] · Hobbies: [3 things] Add HTML comments above each section. I'm a beginner learning to code.