With any remaining time, make updates to the webpage by following these instructions!
It is pretty simple to add a YouTube video to your website; YouTube does all the hard work for you!



The code should look something like this:
<iframe width="560" height="315" src="https://www.youtube.com/embed/7zkX6kfnWbk" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
There are some fonts built into the web by default, but there are a ton more available online. Use Google Fonts to outfit your website with a cool custom one!
The first step is to grab the code that will download the font for you.




<style></style> tags (starting with @import) and copy it
@import)
{ and }The code at the top should end up looking something like this:
@import url('https://fonts.googleapis.com/css2?family=Ms+Madi&display=swap');
Now that the font has been imported, it will be possible to use it in the CSS!
font-family:
body rule, (between { and }), make a new linefont-family)That should be it! Try running the project and viewing the page. The text should be styled with the new font!
The code should end up looking something like this:
@import url('https://fonts.googleapis.com/css2?family=Ms+Madi&display=swap');
body {
font-family: 'Ms Modi', cursive;
}
Currently, the background of the website is just a solid color. But it can be a gradient color, or even an image!
Luckily, there is a website that generates CSS code for gradients.

body rule, (between { and }), paste the code (starting with background)That should be it! The code should end up looking something like this:
body {
background: rgb(34,193,195);
background: linear-gradient(163deg, rgba(34,193,195,1) 0%, rgba(104,191,147,1) 10%, rgba(101,175,65,1) 40%, rgba(253,240,45,1) 100%);
}
It is also possible to give the page a background image.
background propertyurl("")It should look something like this:
body {
background: url("https://cdn.wallpaperhub.app/cloudcache/6/9/0/e/e/f/690eefe3ba1f553e0ea527f51ee407b604b681b4.jpg");
}
Another neat CSS trick is to add text shadow. For this example, add text shadow only to the h1 header.
h1 and {
h1 HTML elementtext-shadow: red -1px 1px} curly bracketThe code should look something like this:
h1 {
text-shadow: red -1px 1px;
}
To make the website feel a bit more 🌟 i n t e r a c t i v e 🌟, update the styles when hovering over certain elements on the page!
li at the bottom of the file
li elementscolor property with a value of orange
li, it is li:hover
li elementsli:hover {
color: orange;
}
HTML and CSS are cool, but you can do even more with your websites if you start to use JavaScript. Here are some cool things that JavaScript can do:
p5.js is a friendly tool for learning to code and make art. It is a free and open-source JavaScript library built by an inclusive, nurturing community. p5.js welcomes artists, designers, beginners, educators, and anyone else!
Click here to check out some of the wild possibilities of p5.js on OpenProcessing.
It is surprisingly easy to start building a 3D world on the web. A-Frame is a great tool for doing so, and you can create without ever leaving an index.html file.
They even have a starter project on Glitch - click here for the introduction!
Phaser is a game development framework that works with JavaScript.