Basic Web Development

13
WEB DEVELOPEMENT SEMINAR Speaker: Jason V. Castellano BSIS IV-A

Transcript of Basic Web Development

Page 1: Basic Web Development

WEB DEVELOPEMENT SEMINAR

Speaker: Jason V. CastellanoBSIS IV-A

Page 2: Basic Web Development

• BSIS IV – A Student

• Web-base Application Developer

• TESDA NC-II and NC-III Passer( PC Operation: National Certification Level II)

• Diploma Information Technology

Page 3: Basic Web Development

What is HTML?

- HyperText Mark-up Language

- A language for formatting web pages* Interpreted by your browser.

- Based on “tags” - Lowercase text between angle brackets (<>)

Page 4: Basic Web Development

The Anatomy of a “Tag”

• <ul > - unordered list

• <ol > - ordered list

• <li > - list Item

• <h1> - Heading 1

- <h1>Example Text </h1>

• <p>- Paragraph

-<p> Example Text </p>

Page 5: Basic Web Development

Basic HTML Tags

• <b> - bold

- <b> Example Text </b>

• <h1> - Heading 1

- <h1>Example Text </h1>

• <p>- Paragraph

-<p> Example Text </p>

• <br />- break - First line <br> Second line

Page 6: Basic Web Development

CSS BASICS

Page 7: Basic Web Development

CSS BASICS

What is CSS? - Cascading Style Sheets.

- is a style language that defines layout of HTML documents

- covers fonts, colors, margins, lines, height, width, background images, advanced positions and many other things

Page 8: Basic Web Development

CSS SYNTAX

h1{color: green;font-size: 12px;}

Selector

Declaration

Declaration

Value

Page 9: Basic Web Development

How to insert a Style Sheet ?

<html><head>

</head>

<title> HTML Tutorial </title>

h1{color : green;font -s ize : 12px;}

<style type=”text/css”>

</style>

Page 10: Basic Web Development

Learning Other Tags• Go to w3schools.com

Page 11: Basic Web Development

Learning Other Tags

• Explore existing web pages

Page 12: Basic Web Development

Learning Other Tags

• Explore existing web pages

Page 13: Basic Web Development

End of Presentation

THANK YOU FOR

LISTENING