Congratulations, you’ve reached the end of Intro to Web Development!
You’ve learned a ton in the past few weeks. You learned how to use HTML, CSS selectors, CSS rules, flexbox, p5.js, calling functions, variables, if statements, animation, input, JavaScript, DOM manipulation, event callbacks, libraries like Bootstrap, and GitHub Pages.
Take a second to pat yourself on the back. That’s a lot!
To practice all of that, we’ll close out the course with a final project.
The real power of coding comes from being able to create anything you want, so rather than tell you what to build, I encourage you to create something that’s personally meaningful to you.
Here are a couple ideas to get you thinking, organized roughly by complexity.
Mild:
Medium:
Spicy:
For more inspiration, check out these resources:
I want you to focus on stretching your web development muscles and building something that’s personally meaningful to you, rather than worrying too much about jumping through hoops for grades.
With that in mind, projects will be worth 30 points, but you can choose any combination from below to get to 30:
index.html
file!onclick
or onload
) or p5.js setup()
and draw()
functions.Example p5.js project - Barking Dog
I use the p5.js editor to create a new sketch. I add an <h1>
element to the index.html
file to give my sketch a title, and I add a <p>
element to index.html
to add a description. I style both of those in the style.css
file. I call functions to draw a dog, and I use if(mousePressed)
to draw the dog barking when the user presses the mouse.
Example Bootstrap project: Professional Business Page
I use Replit to create a new HTML project. I load Bootstrap’s JavaScript and CSS files. I use Bootstrap grid to lay out a page that shows a gallery of services offered by the business. I add a Bootstrap carousel component to show some previously completed jobs. I add my own CSS to change the font. I add an input element for the user to enter their email address to contact me. When the user enters their email and clicks submit, for now I just show an alert box. After this class, I’ll investigate actually sending the email address to the business.
Example HTML project: Contact Page
I use Replit to create a new HTML project. I create links to my Twitter, Instagram, and LinkedIn profiles, and I add CSS to give each link a different color and font. I lay them out using flexbox. Then I add JavaScript that gets the current time of day, and then I use an if
statement to check that time and then add what I’m probably doing right now to the page.
Example Library project: Restaurant Map
I use Replit to create a new HTML project. I load the Google Maps JavaScript library, and I get my API key working so my map shows. Then I write JavaScript that adds five markers to the map, one for each of my favorite restaurants.