Intro to Web Development First Web Page

Slides:



Advertisements
Similar presentations
Dreamweaver Dr. Kristen Landreville Wed. 09/29/10 – Fri. 10/08/10.
Advertisements

HTML Basics Customizing your site using the basics of HTML.
Intro to HTML. HTML HTML = HyperText Markup Language Used to define the content of a webpage HTML is made up of tags and attributes Content.
Hyper Text Markup Language.  HTML is a language for describing web pages.  HTML stands for Hyper Text Markup Language  HTML is not a programming language,
CSS The basics { }. CSS Cascading Style Sheets - language used to – describe html appearance & formatting Style Sheet - file that describes – how html.
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
Project 8 Creating Style Sheets.
XHTML Basics.
Creating and Editing a Web Page Using Inline Styles
Introducing HTML Skills: create simple Web pages
Microsoft Expression Web-Illustrated Unit L: Using Code Tools.
4.01 Cascading Style Sheets
Creating Tables in a Web Site Using an External Style Sheet HTML5 & CSS 7 th Edition.
HTMLMR.Mostafa badr1. Lesson 3 HTML Tags Lesson 2 Creating a HTML File Lesson 1: Hyper Text Markup Language (HTML) Basics Get Trained for a Better Future.
Creating Tables in a Web Site Using an External Style Sheet
HTML Concepts and Techniques Fourth Edition Project 8 Creating Style Sheets.
Creating Tables in a Web Site
Chapter 2 Developing a Web Page. A web page is composed of two distinct sections: –The head content –The body Creating Head Content and Setting Page Properties.
 This presentation introduces the following: › 3 types of CSS › CSS syntax › CSS comments › CSS and color › The box model.
Just A Few More Fun Objectives 1 Having Some Fun With Java Script 2 Using Style Sheets.
CSS Basic (cascading style sheets)
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Chapter 2 Developing a Web Page. A web page is composed of two distinct sections: – The head content – The body Creating Head Content and Setting Page.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
HTML GUIDE Press F5 and then Click on the links on the left to get to the section you want Section 1: Getting Started Section 2: Moving Banner Section.
Spiderman ©Marvel Comics Creating Web Pages (part 1)
Your HTML website creating your first html file. Creating an HTML FIle Open note pad from accessories, programs. Write code. Save and view. In 3 Steps.
1 Your Web Page title body of Web page main heading H2 heading bulleted list paragraph.
Creating Web Pages with Links, Images, and Embedded Style Sheets
Tutorial #1 Using HTML to Create Web Pages. HTML, XHTML, and CSS HTML – HyperText Markup Language The tags the browser uses to define the content of the.
Microsoft Expression Web - Illustrated Unit A: Getting Started With Microsoft Expression Web.
Project 02 Creating and Editing a Web Page Concept Map of Unit Creating and Editing a Web Page Key Learning Understand the elements to create a web page.
COMP 143 Web Development with Adobe Dreamweaver CC.
HTML is the language that allows text and graphics to be displayed as Web pages. It is a set of special codes, called tags, that tells a browser application.
HTML LAYOUTS. CONTENTS Layouts Example Layout Using Element Example Using Table Example Output Summary Exercise.
Getting Started With HTML
Web Basics: HTML/CSS/JavaScript What are they?
HTML5 Basics.
4.01 Cascading Style Sheets
Lab Styling Tabs with CSS Scott Lydiard
Tutorial: How to Creat a Website.
Coding, Testing and Valdating a Web Page
XHTML Basics.
Basic HTML PowerPoint How Hyper Text Markup Language Works
HTML and Website Development
Intro to Web Development Class A Review
Basic HTML PowerPoint How Hyper Text Markup Language Works
XHTML Basics.
XHTML Basics.
Digital Design – Copyright Law
Introduction to Web Page Design
Intro to Web Development HTML Structure
Intro to Web Development Links
Intro to Web Development Nesting Elements
Intro to Web Development
BUILDING A WEBSITE 7.4.2: Basics of HTML and CSS.
HTML Structure.
XHTML Basics.
Intro to Web Development Homework Review
Introduction to Web Application Design
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Creating your first website
HTML & CSS 7 Languages in 7 Days.
XHTML Basics.
Introduction to Web Application Design
Creating your first website
4.01 Cascading Style Sheets
Getting Started With Web Page Creation Using HTML
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Presentation transcript:

Intro to Web Development First Web Page

First Web Page Using 1st (of 3) Internet Languages

Secret Technique:

Modify Existing Web Page Secret Technique: Modify Existing Web Page

Two Ways to View Web Page As Web Page: In Browser

Two Ways to View Web Page As Web Page: In Browser As Text File: In Editor

Text Editor

Text Editors Notepad Gedit TextPad Notes QuickEdit Text Editors are apps (programs) for creating simple, human readable files. QuickEdit

Programming Text Editors Atom Sublime Text Emacs

ProgramText

Desktop Setup: PowerPoint (full screen)

Desktop Setup: Atom & Chrome (split screen)

Steps Browser View Web Page

Steps View Source Code Browser View Web Page

Steps Browser Editor View Source Code View Web Page Copy Code Paste Code

Steps Browser Editor View Source Code View Web Page Copy Code Paste Code Edit Code

Steps Browser Editor View Source Code View Web Page Copy Code Paste Code Edit Code Save

Step 1: Visit ScottsDevelopers.com | HTML

Step 2: Get HTML5 Simple Template

Step 2: Get HTML5 Simple Template

Step 3: View Source Code In Chrome, ctrl-u

Step 4: Copy Source Code In Chrome, ctrl-a, ctrl-c

Step 5: Startup Atom (Close any open panels)

Step 6: Create New File File > New

Step 7: Paste Text into Atom ctrl-v

Step 8: Save to Desktop File > Save As With webpage name scott.html

Step 9: Modify HTML Change web page title and page content: <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title> Your Title Here </title> </head> <body> Your message here! </body> </html>

Step 9: Modify HTML

Step 10: Save and Test ctrl-s In Chrome:

Adding CSS

Step 11: Add CSS CSS styling the <body> element: <title>First Web Page</title> <style> body { color:yellow; background-color:blue; } </style> </head>

Step 11: Add CSS CSS styling the <body> element: <title>First Web Page</title> <style> body { color:yellow; background-color:blue; } </style> <style> Block Adds CSS (Cascading Style Sheets) to web page </head>

Step 11: Add CSS CSS styling the <body> element: <title>First Web Page</title> <style> body { color:yellow; background-color:blue; } </style> This styling applies to entire web page (the <body>) </head>

Step 11: Add CSS CSS styling the <body> element: <title>First Web Page</title> <style> body { color:yellow; background-color:blue; } </style> Web page text color is yellow </head>

Step 11: Add CSS CSS styling the <body> element: <title>First Web Page</title> <style> body { color:yellow; background-color:blue; } </style> Web page background is blue </head>

Esc in PowerPoint (End Slide Show) Step 11b: Add CSS Esc in PowerPoint (End Slide Show) Click in yellow text box

Step 11c: Add CSS copy code: Ctrl-A, Ctrl-C

Step 12: Add CSS to code in Atom Paste into Atom Ctrl-V (after <title> line) Correct Indentation Save: Ctrl-S

Step 13: In Chrome, Refesh (F5)

Step 14: Restart PowerPoint Slide Show (Shift - F5)

Adding JavaScript

Step 14: Add JavaScript Add “onClick” attribute to <body> calling the JavaScript function "alert()": <body onClick="javascript:alert('hi');">

Esc in PowerPoint (end slide show) Step 14a: Add JavaScript Esc in PowerPoint (end slide show) Screen scrape text in yellow box from Step 14 Click : ctrl-A, ctrl-C

Step 14b: Add JavaScript Paste into Atom After original <body>

Delete original <body> tag Step 14c: Add JavaScript Delete original <body> tag Save ctrl-S

Step 14d: Add JavaScript Refresh Chrome: F5 Click Text

Summary Three languages

Summary Three languages HTML

Summary Three languages CSS

Summary Three languages JavaScript