HTML & teh internets.

Slides:



Advertisements
Similar presentations
Introduction to HTML
Advertisements

HTML Basics Customizing your site using the basics of HTML.
Html: getting started HTML is hyper text markup language. It is what web browsers look at on the Internet. HTML documents should be created in a simple.
WeB application development
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
HTML / CSS – Basics Why the heck are we doing this?
Introducing HTML Skills: create simple Web pages
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 1.
CIS101 Introduction to Computing Week 05. Agenda Your questions Exam next week - Excel Introduction to the Internet & HTML Online HTML Resources Using.
CIS101 Introduction to Computing Week 05. Agenda Your questions CIS101 Survey Introduction to the Internet & HTML Online HTML Resources Using the HTML.
CIS101 Introduction to Computing
Lecture 2B: HTML and CSS IT 202—Internet Applications Based on notes developed by Morgan Benton.
Intro to HTML Workshop. Welcome This slideshow presentation is designed to introduce you to the basics of HTML. It is the first of three HTML workshops.
Introduction to HTML 2006 CIS101. What is the Internet? Global network of computers that are connected and communicate via a series of Protocols Protocols.
Introduction to HTML 2006 INT197B. What is the Internet? Global network of computers that are connected and communicate via a series of Protocols Protocols.
Introduction to HTML 2004 CIS101. What is the Internet? Global network of computers that are connected and communicate via a series of Protocols Protocols.
CIS101 Introduction to Computing Week 06. Agenda Your questions Excel Exam during second hour Our status after the snow day Introduction to the Internet.
WEB DESIGN 1 THEORY : 30 PRACTICE : 60 Lecturer : Phạm Sĩ Quan Phone : Blog:
Create a Website Session I Key Components Hands-on HTML.
HTML. We’ll learn … What HTML is What tags are What a basic web page looks like What 3 HTML tags are required What HTML comments look like How to title.
Web Design Using HTML Codes. WHAT DO I NEED TO BEGIN DESIGNING A HOME PAGE? 1.YOU NEED A FOLDER (also called a DIRECTORY) You should set up a folder or.
CS 101 – Dec. 2 Download speed Internet vs. Web Domains HTML.
1 Essential HTML coding By Fadi Safieddine (Week 2)
Introduction to HTML. What is a HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup tags  The.
HTML Hyper Text Markup Language. What is an HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup.
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
HTML I An Introduction to the Language of the Web Terry Bake
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
Web Design 3080 – Week 2 More Fun With Delicious.com Setting up a ‘network’. 1.Go to Delicious.com and sign up for a personal account 2.Once your account.
Introduction to web development and HTML MGMT 230 LAB.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
HTML. Hypertext Markup Language Lesson Objectives 1. We will be able to understand the need for HTML and where it is used 2. We will be edit HTML to.
CPSC 203 Introduction to Computers Lab 33 By Jie Gao.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
LEARNING HTML PowerPoint #1 Cyrus Saadat, Webmaster.
CPSC 203 Introduction to Computers Lab 66 By Jie Gao.
CS 111 – Oct. 4 Web design –HTML –Javascript Commitment: –This week, read sections 4.3 – 4.5.
Web Site Design & Management Class One Agenda Attendance Questionnaire Introductions Class Policies About the class Code your first page FTP Assignments.
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.
ALBERT WAVERING BOBBY SENG. Welcome  Introductions  Existing knowledge?  Laptops?  Course goals  Introduction to several topics  Encourage creativity.
HTML HyperText Markup Language. Text Files An array of bytes stored on disk Each element of the array is a text character A text editor is a user program.
+ HTML Hypertext Markup Language. + Introducing HTML HTML is the language used in writing websites Open the “HTML Practice” link on the Daily Log Delete.
1 2/16/05CS120 The Information Era Chapter 4 Basic Web Page Construction TOPICS: Intro to HTML and Basic Web Page Design.
Web Design – Week 2 Introduction to website basics Website basics: How the Web Works Client / server architecture Packet switching URL components.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place Programming language.
HTML 17 HTML 17. HTML 17 HTML is the language for making webpages Hypertext Markup Language You need to know the basics Questions about HTML are common.
Computer Basics Introduction CIS 109 Columbia College.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
Getting Started with HTML
Alabama Educational Technology Conference
Introduction to HTML.
Introduction to HTML:.
Introduction to basic HTML
Active Server Pages Computer Science 40S.
Human Computer Interaction
Elements of HTML Web Design – Sec 3-2
Chapter 2 Client/Server Applications
Elements of HTML Web Design – Sec 3-2
HTML.
Essentials of Web Pages
Web Design and Development
Secure Web Programming
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
Web Development 101 Workshop
HyperText Markup Language
An Introduction to HTML Pages
WJEC GCSE Computer Science
Hypertext Markup Language
Web Programming and Design
Getting Started with HTML
Presentation transcript:

HTML & teh internets

Introduction Who am I? Who are you? What do you know?

What’s a text editor? (not a person!) What’s a server? What do you know? What is HTML? Name Summary What’s a text editor? (not a person!) What’s a server? Name as many browsers as you know? Which one do you prefer? What do you think this code is doing? <p>Dolly is a <b>weird</b> sheep!</p> How do you call these questions?

Contents Introduction Internet & Basic HTML DIY Hints & Tips

At the end of this day you’ll be able to Goals At the end of this day you’ll be able to Create an HTML file View both code and result Use a text editor Write simple HTML Understand what the above actually means You’ll also understand How internet and HTML generally works What we’re going to do this course

Servers & Clients: What’s in a name? Software & Hardware Opens directories to remote users (clients) Sends data on request Client Software & Person Downloads data and presents it to the user Requests data Think of the postal service, but the other way around.

HyperText Markup Language What is HTML? HyperText Markup Language HyperText Markup Language? Plain text Right-click on desktop New Text Document Extension: .html Tags

Tags <HTML> </HTML> <HEAD> <TITLE> First Try </TITLE> </HEAD> <BODY> <P> Does this work? </P> </BODY> </HTML>

HyperText Markup Language Plain text Extension: .html Tags Structured What is HTML? HyperText Markup Language Plain text Extension: .html Tags Structured Containers Nesting Indentation

Structured <HTML> </HTML> <HEAD> <TITLE> First Try </TITLE> </HEAD> <BODY> <P> Does this work? </P> </BODY> </HTML>

What is HTML? HyperText Markup Language Plain text Extension: .html Tags Structured Rendered by browser software

HyperText Markup Language Plain text Extension: .html Tags Structured What is HTML? HyperText Markup Language Plain text Extension: .html Tags Structured Rendered by browser software You don’t need a server to use HTML! Create and test on your own pc You can’t break anything

Let’s see what happens if we open them. Demonstration 2 files with this text “Hello! I am fat text.” One is called text_1.txt and one text_1.html “Hello! I am <b>fat text</b>.” One is called text_2.txt and one text_2.html Let’s see what happens if we open them.

Just try it <B>, <I> <P>, <H2> <BR>, <HR> <UL>, <OL> <LI> <UL> <LI>FIAT</LI> <LI>BMW</LI> <LI>FORD</LI> </UL> Bold, Italic Paragraph, Heading 2 Break, Horizontal Rule (Un-) Ordered List List Item Structured

The course website can be found at Go to day 1, last paragraph Exercise 1 The course website can be found at www.indeles.nl Go to day 1, last paragraph Try to recreate the first half of the page (up to 'Links') without looking at the source code. But how do you do that?

What to do? Get your USB stick Go to Website Editors/Crimson Editor/ Open cedt.exe Save the empty start file as mypage.html I’d do that on your usb stick or network Open FireFox or Internet Explorer Drag mypage.html in the browser Open the example page in another screen Edit in the editor, save, refresh the browser (F5) to see the result.

Exercise 1!

Just try it <B>, <I> <P>, <H2> <BR>, <HR> <UL>, <OL> <LI> <UL> <LI>FIAT</LI> <LI>BMW</LI> <LI>FORD</LI> </UL> Bold, Italic Paragraph, Heading 2 Break, Horizontal Rule (Un-) Ordered List List Item Structured

At the end of this day you’ll be able to Goals At the end of this day you’ll be able to Create an HTML file View both code and result Use a text editor Write simple HTML Understand what the above actually means You’ll also understand How internet and HTML generally works What we’re going to do this course

We will focus on stuff that happens at the side of the client This course We will focus on stuff that happens at the side of the client Everything works on your own PC Very little ‘real’ programming Good for small sites Keywords HTML CSS Javascript Images Multimedia

We will focus on stuff that happens at the side of the server Next course We will focus on stuff that happens at the side of the server You’ll need a server (which can run on your own PC) Lots of ‘real’ programming Good for big sites Keywords PHP MySQL Forms

Make a decent layout for a bit of text Read HTML reference up to p16 Homework Make a decent layout for a bit of text Read HTML reference up to p16 Finish example HTML if you didn’t do so The main product of this course is an educational website. Think up a topic for your website Does the topic fit the medium? Do you really want to share it? Is it related to your studies? Does it have any educational value?

Done!