UNC BACS 200

Web Pages with HTML/CSS

Logo

Lesson 6 - Development Workflow

LEARN

Today's Agenda

Daily Reading

Web Servers and Web Browsers

Install Dev Tools

Clone Your Repo

Visual Studio and Git

Configuring Git

Building Web Pages

HTML Template

Basic HTML Elements

HTML Template

HTML Doctype

HTML root element

HTML head & body

HTML body

<h1>Simple HTML Page</h1> <p>This demo shows how to create a page that contains a single headline and two paragraphs of text.</p> <p>HTML is not really that hard. There are just a lot of details.</p>

HTML Head

Within the head we will define the invisible settings that the browser will read.

These settings must be defined

We will add more items later. For now we have

<head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>Page Title</title> </head>

All together now!

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>BACS 200 - Simple Page</title> </head> <body> <h1>Simple HTML Page</h1> <p>This demo shows how to create a page that contains a single headline and two paragraphs of text.</p> <p>HTML is not really that hard. There are just a lot of details.</p> </body> </html>

BUILD

Build Home Page

Page Template

Build Profile Page

Build Inspire Page

Your Web Pages

Project 2

Page Tester

Page Tester Test Cases