Back to Browse

Random Generator | Web Dev Starter Project

141 views
Jan 23, 2024
32:12

This video is designed for people new to web development in HTML/CSS/JavaScript, who would like to dive in and create simple projects in a browser-based IDE before moving on to more complex tutorials, configuring offline IDEs and reading documentation. // Javascript function to randomly choose from a list function randomChoice(lst) { let i = Math.floor(Math.random() * lst.length) return lst[i] } 0:00 intro 0:52 JSFiddle 3:47 HTML 6:34 CSS styles 8:39 fonts 12:08 button styling 16:57 making the button clickable 23:39 generating random ideas

Download

0 formats

No download links available.

Random Generator | Web Dev Starter Project | NatokHD