An open API service indexing awesome lists of open source software.

https://github.com/sparklemca-osc/web-development-workshop

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.
https://github.com/sparklemca-osc/web-development-workshop

github javascript tailwind-css web-development

Last synced: about 2 months ago
JSON representation

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.

Awesome Lists containing this project

README

          

## Basic setup with TailwindCSS and VSCode settings.

### Tailwind CDN 1

```html

```

### Tailwind CDN Alternative

```html

```

### .vscode/settings.json

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

### tailwind.config.js

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