1 of 16

Introduction to Web Development

Workshop

Student Summer Sprint

2 of 16

Intro to web dev

  • Frontend
    • HTML (Hypertext Markup Language). It used to describe the structure of a web page
    • CSS (Cascading Style Sheets). It used to style html elements.
    • JavaScript. It’s a programming language that used to create interactive websites.

https://html-css-js.com/

  • Backend
    • Programming Language (PHP, Ruby, Python, JS)
    • Database (MySQL, PostgreSQL)

3 of 16

HTML

  • HTML is the standard markup language for Web pages.
  • HTML document consist of elements.

4 of 16

HTML

Simple HTML document

5 of 16

HTML

Famous HTML elements:-

  • Headings
  • Paragraph
  • Lists
  • Images
  • Links
  • Forms
  • Div and Span

6 of 16

HTML

Summary

  • HTML is the standard markup language for Web pages.
  • HTML documents consist of elements.
  • HTML elements are defined by a start tag, some content, and an end tag. <tagname>Some Content…</tagname>
  • HTML elements can have attributes

7 of 16

CSS

CSS is used to define styles for your web pages, including the design, layout and variations in display for different devices and screen sizes.

8 of 16

CSS

  • Syntax

h1

{

color: red;

background-color: black;

}

selector

property

value

9 of 16

CSS

  • Selectors:

10 of 16

JavaScript

JavaScript is a programming language that is used to create interactive websites.

What we will learn:

  • Variables
  • Functions
  • jQuery

11 of 16

Bootstrap

Bootstrap is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first websites.

12 of 16

Bootstrap

Grid System

Row

col-1

col-1

col-1

col-1

col-1

col-1

col-1

col-1

col-1

col-1

col-1

col-1

col-12

col-4

col-8

13 of 16

Create a personal website

14 of 16

Summary

  • HTML
    • Tags
    • Attributes
  • CSS
    • Syntax
    • Selectors
  • JS
    • Variables
    • Functions
    • JQuery
  • Bootstrap
    • Grid System

15 of 16

Next Step

  1. W3Schools (https://www.w3schools.com)

16 of 16

Goodbye