HTTP and HTML HTML HTTP HTTP – Standardize the packaging

Slides:



Advertisements
Similar presentations
ASP.NET Intro An introduction to the languages and communication of an ASP.NET system.
Advertisements

Internet Applications Development Lecture 2 L. Obead Alhadreti.
HyperText Markup Language (HTML). Introduction to HTML Hyper Text Markup Language HTML Example The structure of an HTML document Agenda.
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
MASTERY OBJECTIVE: Learn parts of an html document Learn basic html tags HTML-An Introduction.
How Tags are used to form your Web Page
Made by: Dan Ye. Introduction Basic Last Page ☆ HTML stands for Hyper Text Markup Language; ☆ HTML is not a programming language, it is a markup language;
Creating your website Using Plain HTML. What is HTML? ► Web pages are authored in HyperText Markup Language (HTML) ► Plain text is marked up with tags,
UNDERSTANDING WEB AND WEB PROJECT PLANNING AND DESIGNING AND EFFECTIVE WEBSITE Garni Dadaian.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
With your friendly Web Developer, Chris.. Terminology  HTML - > Hypertext Markup Language  CSS -> Cascading Style Sheet  open tag  close tag  HTTP->Hypertext.
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
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
Lesson 2: Basic HTML Code Basic HTML Code. HTML is an acronym for Hypertext Markup Language. Internet browsers translate the HTML code into texts and.
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,
CA Professional Web Site Development Class 2: Anatomy of a Web Site and Web Page & Intro to HTML.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
McLean HIGHER COMPUTER NETWORKING Lesson 5 HTML Description of HTML web page Creating a simple HTML web page.
HTML Basics. HTML Introduction Stands for HyperText Markup Language. HTML files are plain text files with mark ups. Some characteristics of HTML: –No.
HTML ( HYPER TEXT MARK UP LANGUAGE ). What is HTML HTML describes the content and format of web pages using tags. Ex. Title Tag: A title It’s the job.
Web Design. How do web pages work? Webpages are written in a code called HTML. Programs like Internet Explorer read the code, and then show it as a web.
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.
Basic Steps to create a Website using HTML5. Hypertext Markup Language.
Creating Your 1 st Web Page. Tags Refers to anything between on a webpage Most appear in pairs surrounding content Some appear as empty tags (no closing.
The Internet Salihu Ibrahim Dasuki (PhD) CSC102 INTRODUCTION TO COMPUTER SCIENCE.
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.
Basic concepts of web design
Getting Started with HTML
Pertemuan 1 Desain web Pertemuan 1
4.01 How Web Pages Work.
Introduction to HTML.
Web Basics: HTML/CSS/JavaScript What are they?
Introduction to HTML:.
HTML – The COMPUTING UNLOCKED GUIDE
Internet Exploration: HTML Basics
Uppingham Community College
INTRODUCTION TO HTML AND CSS
WEB PAGES: CREATING AND MAINTAINING **
Key concepts of Computing
Sec (4.3) The World Wide Web.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Internet Exploration: HTML Basics
Understanding the internet
APTECH JANAKPURI INSTITUTE PROVIDING WEB DESIGNING COURSES Address:- J-1,2nd Floor, Opp Metro Pillar No – 559, Janakpuri East, Delhi /42.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Chapter 27 WWW and HTTP.
Web Design and Development
Of HTML, CSS and JavaScript
Basic HTML and Embed Codes
HTML 12/27/2018.
Making Web pages.
INTRODUCTION TO HTML AND CSS
Secure Web Programming
Web pages Lesson 3.
What is HTML?.
Chapter 16 The World Wide Web.
HTML What is Html? HTML stands for Hypertext Markup Language.
Web Application Development
Computer communications
HTML – The COMPUTING UNLOCKED GUIDE
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
The Most Basic HTML Page
The language of the internet
The language of the internet
4.01 How Web Pages Work.
WJEC GCSE Computer Science
Build a Text Dataset from AMAZON
Presentation transcript:

HTTP and HTML HTML HTTP HTTP – Standardize the packaging HTML – Standardize the information HTML HTTP

HTTP- Standardize the packaging Stands for Hyper Text Transfer Protocol The basis for data communication in the internet Data communication starts with a request sent from a client, and ends with the response received from a web server

HTML – Standardize the information Hypertext Markup Language (HTML) is the standard language for creating web pages HTML describes the structure of a web page  Web browsers receive HTML code and render it into multimedia web pages HTML elements create structural semantics for text such as headings, paragraphs, lists, links, quotes and other items Browsers do not display the HTML code, but use it to interpret the content of the page

HTML - Where to code?

HTML - Where to code?

an HTML compiler Every Web browser Compiler is essentially

https://html-online.com/editor/ Where to code? https://html-online.com/editor/

Tags HTML uses Tags to mark areas of a code Similar to { } in Arduino A Tag is placed between < > There is an opening <TAG> and closing tag </TAG>

Code Structure The first section has information indicating the type of code Within the <html> section there is a <head> section and a <body> section Each section closes with a closing tag.

Code Structure The <head> section will contain information about your webpage The <body> section will contain the actual webpage

Code Structure

HTML Code Structure The <title> section contains the name of the webpage as it appears in a browser

HTML Code Structure <html> <head> <title> Center for Initiatives in Jewish Education </title> </head> <body> </body> </html>

HTML Body Text

HTML Links

HTML Links

HTML Summary

Display Button State on Website When using the Arduino IDE, All HTML coding must be within a client.println(“ ”); command And all ” must be preceded by a \ int sensorReading = analogRead(A0); client.println("analog input is"); client.println(sensorReading);

Display Button State on Website