Web Programming Language

Slides:



Advertisements
Similar presentations
HTML: HyperText Markup Language Hello World Welcome to the world!
Advertisements

Creating a Web Page HyperText Markup Language. HTML Documents  Created using any text editor  Notepad  Vi, Pico, or Emacs  If using word-processor,
Computer Science 103 Chapter 2 HyperText Markup Language (HTML)
HTML Tags. Objectives Know the commonly used HTML tags Create a simple webpage using the HTML tags that will be discussed.
Amber Annett David Bell October 13 th, What will happen What is this business about personal web pages? Designated location of your own web page.
 HTML stands for Hyper Text Mark-up Language. The coding language used to create documents for the World Wide Web  HTML is composed of tags. HTML tags.
All Web pages are written with some form of HTML (HyperText Markup Language). HTML documents are saved as Text Only files so virtually any computer can.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
INTRODUCTION. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language,
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
HTML Basic. What is HTML HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it.
Web programming Part 1: HTML 由 NordriDesign 提供
WEEK -1 ACM 262 ACM 262 Course Notes. HTML What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
1999, COMPUTER SCIENCE, BUU Introduction to HTML Seree Chinodom
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.
Chapter 4 HTML Tags. HTML is written in something called tags. Tags come in pairs, an opening one and a closing one. The first pair of tags we'll write.
HTML Help book. HTML HTML is the programming language used to make web pages for the Internet. HTML stands for Hyper Text Markup Language. HTML is made.
Week 1: Introduction to HTML and Web Design
What you can see in the picture?
HTML.
INTRO TO WEB DEVELOPMENT html
Introduction to HTML.
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
Introduction to HTML:.
HTML – The COMPUTING UNLOCKED GUIDE
HTML basics
Internet Exploration: HTML Basics
XHTML/CSS Week 1.
Computer Fundamentals 2
Survey of Computer Science CSCI 110, Spring 2011 Lecture 23 HTML
Elements of HTML Web Design – Sec 3-2
HTML: HyperText Markup Language
Elements of HTML Web Design – Sec 3-2
INTRODUCTION TO HTML AND CSS
S.Y.B.M.M. LECTURE SERIES - PART 2
Internet Exploration: HTML Basics
Elements of HTML Web Design – Sec 3-2
<TAG> <html> <head>
HTML Robert McIntosh
<start>middle</end> Version 1.1
COMPUTING FUNDAMENTALS
Essentials of Web Pages
Web Programming A different world! Three main languages/tools No Java
Computers and Scientific Thinking David Reed, Creighton University
Web Design and Development
Basic HTML and Embed Codes
Marking Up with XHTML Tags describe how a web page should look
HTML ELEMENTS Ms. Olifer.
What is HTML anyway? HTML stands for HyperText Markup Language. Developed by scientist Tim Berners-Lee in 1990, HTML is the "hidden" code that helps us.
Intro to Web Development Links
Creating a web page Auxiliary Lab Lecture
INTRODUCTION TO HTML AND CSS
HTML Basics Web.
Introduction to HTML.
Computer communications
Basic HTML Workshop.
HTML – The COMPUTING UNLOCKED GUIDE
HyperText Markup Language
HTML Basics Mr. Fazzalari.
Creating a web page.
Basics of Web Design Chapter 2 HTML Basics Key Concepts
WJEC GCSE Computer Science
Basics of Web Design Chapter 2 HTML Basics Key Concepts
Web Programming and Design
Marking Up with XHTML Tags describe how a web page should look
Presentation transcript:

Web Programming Language Chapter 1

269200 Web Programming Language(s)

Introducing HTML Basic HTML Tags HTML Tables Images & HTML Attributes Hypertext & Links HTML Comments

HTML Hypertext Markup Language Text & Tags Opening Tag: <HTML> or <html> Closing Tag: </HTML> or </html>

My First Page <html> <head> <title>My First Webpage</title> </head> <body> Hello World! </body> </html>

My First Webpage

Key Tags <html>…</html> - Everything inside is HTML <head>…</head> - Contains header data, which doesn’t appear on the page <body>…</body> - Contains the parts that appear in the browser <title>…</title> - Appears on the browser toolbar

Tip : View Source Or, Ctrl-U in Chrome

Basic HTML Tags <p>….</p> P is for paragraphs, and is used to define a text into paragraphs. By default the browser will add some space (or a margin) before and after each <P> tag. <h1>…</h1> <h2>…</h2> <h3>…</h3> <h4>…</h4> <h5>…</h5> <h6>…</h6> A variety of headings can be easily added to a page using the tags from <H1> to <H6>. These tags highlight text into different sizes depending on which level heading is used. <em>…</em> <i>…</i> <EM> can be used to stress emphasis, or to highlight a piece of text, by default making it appear like italics. <strong>…</strong> <b>…</b> Strong tags can be used to highlight important text, or make it appear bold. <ul> <li>…</li> <li>…</li> </ul> <UL> is used to create an unordered list of something, and the list will consist of list items <LI>

Subtle Difference? What is the difference between <strong> and <b>? What is the difference between <em> and <i>?

Subtle Difference? What is the difference between <strong> and <b>? <b> or “Bold” defines how the text should appear, <strong> indicates it is more significant that the surrounding text… What is the difference between <em> and <i>? <i> or “Italic” defines how the text should appear, which <em> indicates it should be “emphasized”… Consider a browser for a blind person?

HTML Tables <table> <tr> <td>Country</td> <td>Capital</td> <td>Population</td> </tr> <tr> <td>Thailand</td> <td>Bangkok</td> <td>67 Million</td> </tr> </table>

Tables Tip Don’t use tables for layout! Tables often use more bytes of markup, making pages take longer to download. The browser needs to download most of a table before it can render any of the page. Tables can make website maintenance and particularly redesign much more complicated. Tables can make content inaccessible to screen readers. Tables can break text copying. In short, tables weren’t meant for page layouts, but they ARE meant for displaying tabular data!

Images & HTML Attributes <img src=”img/picture.jpg” alt=”company logo” style=”width:300px;height:300px”> “src” attribute Relative Link

Hypertext & Links <a href=”http://www.example.com” target=”_blank”>link here</a> <a href=”#html-linking”>Go to the HTML Linking Section</a> Href attribute Absolute Link Open in new tab Link to somewhere on the page

HTML Comments <!--This is a comment --> <!-- <img src=”img/test.jpg”> Don’t show this yet! -->

Key Points HTML (Hyper Text Markup Language) is used to create simple webpages. An HTML page consists of text and tags, with tags instructing a browser what to do with the text. Opening tags, such as <html>, are matched with closing tags, such as </html>. Some HTML tags are used to define the structure of the document, such as <head> and <body>. Some HTML tags instruct the browser how text should be displayed, such as <strong> or <i>. The table tags can be used to display tabular data on a page. Pictures can be included on a webpage using the <img> tag, which has no closing tag. Some tags, such as the <img> tag need attributes, or parameters, to give the browser more information such as how big the image should be, or where the file is located. The anchor tag, <a>, is used for creating links.