This is the code repository for the course: Getting Started w/ JavaScript for Web Development
This is a Better Dev course by Chris Sev
We'll be doing all our work inside of an index.html
file. All our HTML, CSS, and JS will go here:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Getting Started with JavaScript</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<style>
body, .jumbotron { padding: 30px; }
</style>
</head>
<body>
<!-- start javascript -->
<script>
</script>
</body>
</html>
We will be using Bootstrap to quickly get CSS styles. I'm a big fan of Tailwind for styling but styling isn't our focus in this course.
To quickly add the Bootstrap library, we have added the following to the of our document:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css">