html (hyper text mark-up language)eecs.csuohio.edu/~sschung/cis408/how_html_works_1.pdfall html...

Post on 20-Jul-2020

7 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

TRANSCRIPT

<HTML>

<head>

<title>Hello World</title>

</head>

<body bgcolor = “#000000”>

<font color = “#ffffff ”>

<H1>Hello World</H1>

</font>

</body>

</HTML> Slide 1

HTML(Hyper Text Mark-Up Language)

Slide 2

Execution of HTML by Web Brower

● Element: Tag

� <Element_Name> Predefined Class </Element_Name>

� Can be Nested

Example:

<!DOCTYPE html><html>

<body><h1>My First Heading</h1><p>My first paragraph.</p>

</body></html>

Slide 3

HTML

● All HTML elements can have attributes

● Attributes provide additional information about an

element

● Attributes are always specified in the start tag

● Attributes usually come in name/value pairs

like: name="value“

Example:

<a href="https://www.w3schools.com">This is a link</a>

Slide 4

HTML: Attribute

Slide 5

Introduction

There are several good reasons for taking CS408: Internet Computing:

● You will learn a variety of interesting concepts.

● It may inspire you to change the way software is developed.

● It will give you the tools to become fabulously wealthy.

...

Slide 6

Introduction

There are several good reasons for taking

CIS408: Internet Computing:

You will learn a variety of interesting

concepts.

It may inspire you to change the way

software is developed.

It will give you the tools to become

fabulously wealthy.

Slide 7

<h1>Introduction</h1>

<p>

There are several good reasons for taking

<i>CIS408: Internet Computing</i>:

</p>

<ul>

<li>

You will learn a variety of interesting

concepts.

</li>

<li>

It may inspire you to change the way

software is developed.

</li>

<li>

It will give you the tools to become

fabulously wealthy.

</li>

</ul>

Markup

Tags

Slide 8

<h1>Introduction</h1>

<p>

There are several good reasons for

taking <i>CIS408: Internet Computing</i>:

</p>

<ul>

<li>

You will learn a variety of

interesting concepts.

</li>

...

Introduction

There are several good reasons for taking CIS408: Internet

Computing:

● You will learn a variety of interesting concepts.

● It may inspire you to change the way software is

developed.

● It will give you the tools to become fabulously wealthy.

...

Slide 9

<?xml version="1.0" encoding="utf-8"?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"

lang="en">

<head>

<title>Hello World</title>

</head>

<body>

<p>Hello world!</p>

</body>

</html>

Slide 10

The XHTML Codes of the Page Without Tags To Define a Layout

for the Text

Slide 11

XHTML Page Display Without Tags To Define a Layout

for the Text

Slide 12

The XHTML Codes of the PageWith Tags To Define the Layout

for the Text

Slide 13

The XHTML Page Display With Tags To Define the Layout

for the Text

top related