V School | Better Humans, Better Outcomes

Bare Bones HTML Page - now with Styles!

Your task is to create a bare bones HTML page, and this time include a link to a stylesheet. You'll need to also create the stylesheet file so there are no broken links. Your page should include a title tag, a first-level header that says anything you want, and a

Bare Bones HTML Page

Create a "Hello World" HTML page that includes the most bare-bones HTML skeleton. Double-click on the HTML file to open it in your browser. It should only show the words "Hello, world!" as text on the screen. If you can't remember what the basic pieces of an HTML document are,

Warmup - Mongoose Schema Practice

Create a set of Mongoose Schemas for a Reddit-style feed to practice good structure in modeling your data. You'll need to include the following: * Users * Posts * Comments on the posts (these only go one level deep, no comments of comments) * Tags to organize posts Consider the following: You need to

Warmup - Racecar

Write a function that takes a string and returns true if that string is a palindrome (the same forward and backward) and false if it is not. isPalindrome("bob"); // true isPalindrome("baz"); // false **Extra credit**: Make it so spaces, capital letters, and punctuation don't stop something from being a palindrome.

Warmup - Squirrel Play

The squirrels in Palo Alto spend most of the day playing. In particular, they play if the temperature is between 60 and 90 (inclusive). Unless it is Summer, then the upper limit is 100 instead of 90. Given an int temp and a boolean isSummer, return true if the squirrels

V School | Better Humans, Better Outcomes © 2026