HTML Introduction CS 1020 – Lego Robot Design. Building Websites HTML (HyperText Markup Language)  The dominate language of the internet  Describes.

Slides:



Advertisements
Similar presentations
Introduction to Web Design Lecture number:. Todays Aim: Introduction to Web-designing and how its done. Modelling websites in HTML.
Advertisements

Farhan Nisar University of Peshawar
Basic Principles for Web Design Source:
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.
HTML and CSS. HTML Hyper Text Markup Language Tells browser how to display text and images.
HTML popo.
HyperText Markup Language (HTML). Introduction to HTML Hyper Text Markup Language HTML Example The structure of an HTML document Agenda.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
CSS Cascading Style Sheets. Objectives Using Inline Styles Working with Selectors Using Embedded Styles Using an External Style Sheet Applying a Style.
Ideas to Layout Beginning web layout using Cascading Style Sheets (CSS). Basic ideas, practices, tools and resources for designing a tableless web site.
HTML: HyperText Markup Language Hello World Welcome to the world!
WeB application development
Website Design.
/k/k 1212 Cascading Style Sheets Part one Marko Boon
1 تقنيات الانترنت عال457 HTML. 2 HTML  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web. HTML is a text formatting.
Presenter: James Huang Date: Sept. 26,  Introduction  Basics  Lists  Links  Forms  CSS 2.
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
MMDE5011 – INTERACTIVE MEDIA PRACTICE 1 WEEK 1: INTRODUCTION TO HTML5
HTML and Web Page Design Presented by Frank H. Osborne, Ph. D. © 2005 ID 2950 Technology and the Young Child.
Marking Up With Html: A Hypertext Markup Language Primer
Web Design is a class created to nurture the minds of high school techies, and introduce those without prior knowledge to the field.
Chapter 2 Introduction to HTML5 Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
Computer Sciences Department
Basics of HTML.
Presenting Information on WWW using HTML. Presenting Information on the Web with HTML How Web sites are organized and implemented A brief introduction.
© 2012 Adobe Systems Incorporated. All Rights Reserved. LEARNING THE LANGUAGE OF THE WEB INTRODUCTION TO HTML AND CSS.
HTML HTML stands for "Hyper Text Mark-up Language“. Technically, HTML is not a programming language, but rather a markup language. Used to create web pages.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
 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.
HTML history, Tags, Element. HTML: HyperText Markup Language Hello World Welcome to the world!
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 
Just Enough HTML How to Create Basic HTML Documents.
IS1811 Multimedia Development for Internet Applications Lecture 4: Introduction to HTML Rob Gleasure
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,
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
HTML: Hyptertext Markup Language Doman’s Sections.
Introduction HTML (Hypertext Markup Language) is used to create document on the World Wide Web. HTML is not a programming language, it is a markup language.
CPSC 203 Introduction to Computers Lab 33 By Jie Gao.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
1 Web Application Programming Presented by: Mehwish Shafiq.
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.
HTML Basics Computers. What is an HTML file? *HTML is a format that tells a computer how to display a web page. The documents themselves are plain text.
Web programming Part 1: HTML 由 NordriDesign 提供
HTML – The Basics COE 201- Computer Proficiency. The Internet The World Wide Web ▫Also known as the Web ▫Created in 1989  European Laboratory for Particle.
HTML World Wide Web Consortium What does HTML stand for? – – –
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.
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
Take Web Design Presurvey Username: First initial, last name For example, Omar Estrella -> oestrella Password: Same as.
Introduction to HTML C151 Multi-User Operating Systems.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
HTML – The Basics Rebecca Shillingburg
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
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.
HTML Tutorial. What is HTML HTML is a markup language for describing web documents (web pages) HTML documents are described by HTML tags Each HTML tag.
Chapter 1: Intro to HTML Section 1: HTML Structure Presentation Section 2: Layout of an HTML File Section 3: Working with Lists & Tables Section 4: HTML.
1 Introduction to HTML. 2 Definitions  W W W – World Wide Web.  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
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.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
Fall 2016 CSULA Saloni Chacha
Web Basics: HTML/CSS/JavaScript What are they?
HTML basics
INTRODUCTION TO HTML AND CSS
INTRODUCTION TO HTML AND CSS
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Pertemuan 1 Desain web Pertemuan 1
Johan Ng and Muhammad Hazzry
Presentation transcript:

HTML Introduction CS 1020 – Lego Robot Design

Building Websites HTML (HyperText Markup Language)  The dominate language of the internet  Describes a webpage’s content  Controlled by the World Wide Web Consortium (W3C)  In practice, affected by Browser compatibility CSS (Cascading Style Sheet)  Describes a webpage’s presentation

Tag Syntax HTML tags include: 1. A start tag 2. An optional attribute name/value pair 3. Content affected by the tag 4. A closing tag... Content...

Document Syntax HTML documents are made up of a hierarchical “tree” of tags structuring content. Correct hierarchy: The following text is bold Incorrect hierarchy: The following text is bold

Hello World Example Hello World Page Hello World!

Hello World Example Hello World Page Hello World! The !DOCTYPE tag informs the browser of the webpage’s language.

Hello World Example Hello World Page Hello World! The html tags enclose all of the page’s content.

Hello World Example Hello World Page Hello World! The head tags contain extra information about the webpage.

Hello World Example Hello World Page Hello World! The title tags tell the browser the page’s name; often the title is used by the browser to label the window or tab.

Hello World Example Hello World Page Hello World! The body tags contain the content displayed on the webpage. The style attribute changes the page’s text color.

Hello World Example Hello World Page Hello World! Finally, the p tags surround paragraphs of text.

A slightly less contrived example… Empty Page I have not yet set up my home page.

Common Tags  Headers,,,...  Italics  Boldface  Line breaks (singleton tag)  Comments (singleton tag)

Links The link tag: “ Middlebury CS! The href attribute:  Use full page address with “ to access other website’s pages  Use only the page’s filename to access other html pages saved in the same directory

Images The image tag: The src attribute:  Use full page address with “ to access other website’s pages  Use only the page’s filename to access other html pages saved in the same directory

Styling HTML with CSS Tags can be stylized by providing extra information in a style attribute. Hello World! Technically, the style attribute applies CSS styling, which is a whole language itself.

Style Attribute Syntax The style attribute consists of a list of CSS property/value pairs, deliminated by semicolons.... Content affected by stylization...

Common CSS Properties  Text color color: blue;  Background color background-color: white;  Height & width height/width: 600px;  Text alignment text-align: center/right/justify;  Text size font-size: 30px;

More on Web Development  Tables  Lists  Color names  More CSS properties  Check out other student’s webpages

HTML Introduction Colby Horn CS 1020 – Lego Robot Design – Winter 2013