Skip to content

A comprehensive, four-week workshop designed to teach the fundamentals of web development. This repository contains all the materials and projects, covering everything from HTML and Tailwind CSS to asynchronous JavaScript, API integration, and deployment with Git and Vercel.

Notifications You must be signed in to change notification settings

adithya-b-r/Web-Development-workshop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Basic setup with TailwindCSS and VSCode settings.

Tailwind CDN 1

<script src="https://cdn.tailwindcss.com"></script>

Tailwind CDN Alternative

<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>

.vscode/settings.json

{
  "tailwindCSS.includeLanguages": {
    "html": "html"
  },
  "tailwindCSS.experimental.classRegex": [
    ["class\\s*=\\s*\"([^\"]*)\"", 1]
  ],
  "editor.quickSuggestions": {
    "strings": true
  }
}

tailwind.config.js

module.exports = {
  content: ["./src/**/*.{html,js}"],
  theme: {
    extend: {},
  },
  plugins: [],
}

About

A comprehensive, four-week workshop designed to teach the fundamentals of web development. This repository contains all the materials and projects, covering everything from HTML and Tailwind CSS to asynchronous JavaScript, API integration, and deployment with Git and Vercel.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published