Skip to content

bryanpsd/getting-started-with-javascript

 
 

Repository files navigation

Getting Started with JavaScript for Web Development

This is the code repository for the course: Getting Started w/ JavaScript for Web Development

This is a Better Dev course by Chris Sev

The Tools We'll Use

  • We'll be using VS Code (view my course on VS Code)
  • Chrome (or a web browser like Firefox)
  • Bootstrap

Starting HTML File

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>

Styling with Bootstrap

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">

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 100.0%