SlideShare a Scribd company logo
INTRODUCTION TO
HTML
Web Design and Development
Spring 2013
Prepare Desktop
• Click on the start
button and open
the following
programs:
• EditPad Lite
• Internet Explorer
• Drag your program
windows to look
like the diagram
HTML Code
• <html>
• <head>
• <title> this is my first webpage</title>
• </head>
• <body bgcolor = "blue" text= "yellow" link = "white" vlink = "green">
• <center>
• <table width = "800" border = "2">
• <tr>
• <td colspan= "2">
• <center>
• <h1> Welcome to the world of HTML</h1>
• </center>
• </td>
• </tr>
HTML Code
• <tr>
• <td> In this cell is where you will place your text for the
paragraph for the graphic in the next column</td>
• <td> <Img src = "pict1.jpg"></td>
• </tr>
• <tr>
• <td> <a href = "page2.html">Page 2</a> </td>
• <td> <a href = "page3.html"> Page 3</a></td>
• </table>
• </body>
• </html>
Open your web page
• Save the document as:
• Index.html
• Click on the view in
browser button
• Your screen should
look like this:
Steps to download images off the Internet
1. Select the image using a
search engine
2. Click on the thumbnail to
view the original image
3. Right click on the image and
select “save image as”
4. Select the folder to save
5. Change the name of the file
name
6. Click on save

More Related Content

PPTX
Introduction to html class-1
PPT
Making your web page more interesting
DOC
poornamatha : poornamitham poornath-poorna-muthatchyathe |
KEY
Artdm171 Week3 Tags Group Projects
PPTX
Basic Webpage
PPT
Creating your first web page
TXT
новый текстовый документ
PPTX
Html tutorial
Introduction to html class-1
Making your web page more interesting
poornamatha : poornamitham poornath-poorna-muthatchyathe |
Artdm171 Week3 Tags Group Projects
Basic Webpage
Creating your first web page
новый текстовый документ
Html tutorial

Similar to Introduction to html (20)

PDF
Html Tutorial
PDF
Web design in 7 days by waqar
PDF
Web design in 7 days
PPTX
Introduction to HTML
DOCX
Html basic
PPTX
How to Create a Simple Webpage Using Notepad.pptx
PPT
HTML Intermediate
PDF
Html web designing 1
PPT
HTML Advanced
PPTX
All About HTML Web Development and its fundamentals
PDF
Html introduction
PPT
Web designing using html
PPTX
Day 2 - Web_Development [basic HTML tags and their functionalities].pptx
DOCX
HTML Lab ProjectTo create a simple web page you will need .docx
PPTX
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptx
PDF
Html beginner
PPTX
Introduction to html fundamental concepts
DOCX
HTML Notes And Some Attributes
PPTX
WEB TECHNOLOGY SLIDE 2 coe35mgfdggdh.pptx
Html Tutorial
Web design in 7 days by waqar
Web design in 7 days
Introduction to HTML
Html basic
How to Create a Simple Webpage Using Notepad.pptx
HTML Intermediate
Html web designing 1
HTML Advanced
All About HTML Web Development and its fundamentals
Html introduction
Web designing using html
Day 2 - Web_Development [basic HTML tags and their functionalities].pptx
HTML Lab ProjectTo create a simple web page you will need .docx
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptx
Html beginner
Introduction to html fundamental concepts
HTML Notes And Some Attributes
WEB TECHNOLOGY SLIDE 2 coe35mgfdggdh.pptx
Ad

Recently uploaded (20)

PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
Spectroscopy.pptx food analysis technology
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
A Presentation on Artificial Intelligence
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
Empathic Computing: Creating Shared Understanding
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
cuic standard and advanced reporting.pdf
Advanced methodologies resolving dimensionality complications for autism neur...
Spectroscopy.pptx food analysis technology
Mobile App Security Testing_ A Comprehensive Guide.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
MYSQL Presentation for SQL database connectivity
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Building Integrated photovoltaic BIPV_UPV.pdf
NewMind AI Weekly Chronicles - August'25-Week II
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Assigned Numbers - 2025 - Bluetooth® Document
The Rise and Fall of 3GPP – Time for a Sabbatical?
A Presentation on Artificial Intelligence
Unlocking AI with Model Context Protocol (MCP)
gpt5_lecture_notes_comprehensive_20250812015547.pdf
20250228 LYD VKU AI Blended-Learning.pptx
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Empathic Computing: Creating Shared Understanding
MIND Revenue Release Quarter 2 2025 Press Release
Diabetes mellitus diagnosis method based random forest with bat algorithm
cuic standard and advanced reporting.pdf
Ad

Introduction to html

  • 1. INTRODUCTION TO HTML Web Design and Development Spring 2013
  • 2. Prepare Desktop • Click on the start button and open the following programs: • EditPad Lite • Internet Explorer • Drag your program windows to look like the diagram
  • 3. HTML Code • <html> • <head> • <title> this is my first webpage</title> • </head> • <body bgcolor = "blue" text= "yellow" link = "white" vlink = "green"> • <center> • <table width = "800" border = "2"> • <tr> • <td colspan= "2"> • <center> • <h1> Welcome to the world of HTML</h1> • </center> • </td> • </tr>
  • 4. HTML Code • <tr> • <td> In this cell is where you will place your text for the paragraph for the graphic in the next column</td> • <td> <Img src = "pict1.jpg"></td> • </tr> • <tr> • <td> <a href = "page2.html">Page 2</a> </td> • <td> <a href = "page3.html"> Page 3</a></td> • </table> • </body> • </html>
  • 5. Open your web page • Save the document as: • Index.html • Click on the view in browser button • Your screen should look like this:
  • 6. Steps to download images off the Internet 1. Select the image using a search engine 2. Click on the thumbnail to view the original image 3. Right click on the image and select “save image as” 4. Select the folder to save 5. Change the name of the file name 6. Click on save