SlideShare a Scribd company logo
Basic of web Design and Basic
Fundamentals of HTML

Devendra Shukla (Senior web designer)
Definition of Web Design
Web Design is a skill of creating presentations of content (usually hypertext or hypermedia
that is delivered to an end-user through the World Wide Web, by way of a Web browser or
either Web-enabled software like Internet clients, microblogging and RSS feeders.
Web Design Basics
What is a good Web site from a design standpoint?
How We Read Text
Following normal reading habits, the users eye moves from left
to right
How We View Screens
Looking at a screen, the users eye scans in a more clockwise
pattern
How Will Your Users Read/View?
If a page uses a lot of text, the user will read in a more
traditional, left to right manner.
If a page has more graphical elements, the user is more likely
to take in the whole page.
Accepted Relative Areas of Importance
Think
Before you do anything else, you need to spend time thinking about
the 4w’s.

What is the purpose of the web page/site?
Who is your target audience?
What will bring your audience back?
Where will your audience be using the site?
Research WebSites
This is a very important part in the creation of a web site, and
usually very useful.
Spend time looking at other internet sites, particularlly your
competitores

You can get any ideas you can use and improve on
Sites with lots of animation are not always the best.
You must also keep in mind that not everyone has a fast
Internet connection.
Principles of good web design
Visitor-centric, clear purpose
Progressive disclosure
Displays quickly
Browser compatible
Intuitive navigation
Spelling, grammar, writing
Attractive design, easy to read
Cultural bias? (Regional? Domestic? International?)
No technical problems (broken links, buggy scripts)
Search Engine Accessible
Creating a Web Site
Once you have decided to establish a web site there are three
steps to getting it online.
1 - Get a domain name - This is your personal/private address
on the Web.

2 - Find a web hosting service- Here is where your website will
reside.
Free vs Private Web Hosting
3 - Design, build and upload your website - The process of
website creation.
Creating your Web Site
Technologies & Tools
Markup Languages
 HTML, DHTML, XML, XSLT, etc....

Cascading Style Sheets (CSS)
Scripting languages
 perl,javascript,php, etc....

Web creation and editing software
 Notepad, FrontPage, Coldfusion, Flash, Hotmetal, Site
Builder, etc..
HTML Fundamentals
What is HTML?
Telling the browser what to do, and what purpose to use.
A series of tags that are integrated into a text document.
Tags are ;
 surrounded with angle brackets like this
 <B> or <I>.

Most tags come in pairs
 exceptions: <P>, <br>, <li> tags …

The first tag turns the action on, and the second turns it off.
 Clear text
 Ignores white space
 Comprised of tags <tag />
 Open tags and closed tags
HTML Fundamentals
Open tags
<name attributes/>
<hr/>, <br/>
<img src=“url” width=‘100px’ height=’60px’/>

Closed tags
<name attributes> stuff </name>
<b>text to be bolded</b>
<h1>level 1 heading text</h1>

Comments
< ! - - comment text -- >
The second tag(off switch) starts with a forward slash.
 For example ,<B> text </B>
can embedded, for instance, to do this:
 <HEAD><TITLE> Your text </HEAD></TITLE> it won't work.
 The correct order is <HEAD><TITLE> Your text
</TITLE></HEAD>
not case sensitivity.
Many tags have attributes.
 For example, <P ALIGN=CENTER> centers the paragraph
following it.
Some browsers don't support the some tags and some
attributes.
Tags in head
<TITLE>...</TITLE>-- puts text on the browser's title bar.
<META>…</META>-- data (information) about data.
<HEAD>...</HEAD>-- contains information about the
document
Tags in Body
Let's talk Text
Heading: <H1> </H1>
Center:<Center> </Center>
Line Break <P> ,<Br>
Phrase Markups: <I></I> ,<B></B>
Create a List
 Unordered list : <UL><li>
 Ordered list: <OL><li>
 Nested
Add some Link
Use <A href=filename|URL></a>tags
How to specify Relative pathnames
Kinds of URLs
https://www.facebook.com
https://gopher.myhost.com/
- news://news.nuri.net
- mailto:skrhee@women.or.kr
How to make colors changes?
Hexadecimal number :
 Color names : <Font color=white>

Changing the Background color
 <BODY BGCOLOR=#19378a>

Changing Text color


<BODY BGCOLOR=#19378a TEXT=#ffffff LINK=#ffff66
VLINK=#66ffff>

Spot color


<FONT COLOR=#66ffcc>WENT'99</FONT>

Image Background


<BODY BACKGROUND=bgimg.gif >
HTML – Fundamentals
Headings
Renders text as a heading, the rendering depending on the
level of heading selected. Headings should be automatically
spaced from the body text.
<h1>Heading 1 level text</h1>
<h2>Heading 2 level text</h2>
<h3>Heading 3 level text</h3>
<h4>Heading 4 level text</h4>
<h5>Heading 5 level text</h5>
<h6>Heading 6 level text</h6>
HTML – Fundamentals
Document Structure
Unordered list

Ordered list

<ul>
<li>apples</li>
<li>bananas</li>
<li>grapes</li>
<li>strawberries</li>
</ul>

<ol type=‘i’ start=‘2’>
<li>apples</li>
<li>bananas</li>
<li>grapes</li>
<li>strawberries</li>
</ol>
HTML – Fundamentals
Tables
<TABLE>
<CAPTION ALIGN="bottom">Class Grades</CAPTION>
<TR>
<TH>Student</TH>
<TH>Grade</TH>
</TR>
<TR>
<TD>Tom</TD>
<TD>B+</TD>
</TR>
<TR>
<TD>Sue</TD>
<TD>A-</TD>
</TR>
</TABLE>
HTML – Fundamentals
Tables
BORDER=value
ALIGN=left|right|center
CELLSPACING=value

CELLPADDING=value
WIDTH=value|percent
HTML – Fundamentals
Tables
rowspan and colspan
HTML – Fundamentals
Tables
<TABLE BORDER=1 WIDTH="50%" CELLPADDING=5 ALIGN="center">
<TR>
<TD colspan=2 align='center'>
<font color="red"><b>Student Grades</b></font>
</TD>
</TR>
<TR>
<TD><b>Student</b></TD>
<TD><b>Grade</b></TD>
</TR>
<TR>
<TD>Tom</TD>
<TD rowspan=2>A</TD>
</TR>
<TR>
<TD>Sue</TD>
</TR>
</TABLE>
HTML – Fundamentals
Tables
HTML – Fundamentals
Div
<div attributes> content </div>
attributes
ID=“name”
STYLE = “style parameters re: CSS”
HTML – Fundamentals
Div
< DIV ID=“fred”
STYLE = “POSITION:absolute|relative;
VISIBILITY:visible:hidden;
Z-INDEX:number;
WIDTH:width in pixels;
HEIGHT:height in pixels;
TOP:pixels from top of page or block;
LEFT:pixels from left edge of page or block;
PADDING:margin in pixels;
other style attributes; “ >

content
</DIV>
HTML – Fundamentals
Div
HTML – Fundamentals
Div
<div style="position:absolute; left:100px; top:100px;
width:100px; height:100px; background-color:#ffffff; ">
</div>
Happy Webbing
Thank You!
Devendra Shukla (Senior web designer)

More Related Content

PPTX
Introduction to Web Development
PDF
Understanding and Supporting Web Accessibility
PPT
Introduction to CSS
PPT
Javascript
PPT
Eye catching HTML BASICS tips: Learn easily
PPT
HTML Tags
PPTX
Html ppt
PPT
Introduction to Cascading Style Sheets (CSS)
Introduction to Web Development
Understanding and Supporting Web Accessibility
Introduction to CSS
Javascript
Eye catching HTML BASICS tips: Learn easily
HTML Tags
Html ppt
Introduction to Cascading Style Sheets (CSS)

What's hot (20)

PPT
Css Ppt
PPT
Intro to Web Design
PPTX
Front End Development | Introduction
PPT
Web development | Derin Dolen
PDF
WEB HOSTING
PPTX
Web Page Designing Using HTML
PPTX
Front end web development
PDF
Web Accessibility for Web Developers
PPTX
What is css
PPTX
PPT
CSS for Beginners
PPT
USER INTERFACE DESIGN PPT
PDF
Web Design
PDF
Tech talk on Tailwind CSS
PPTX
Web Development
PDF
Website Layout and Structure
PPT
Html & Css presentation
PPTX
Html notes with Examples
PDF
Web Designing Presentation
Css Ppt
Intro to Web Design
Front End Development | Introduction
Web development | Derin Dolen
WEB HOSTING
Web Page Designing Using HTML
Front end web development
Web Accessibility for Web Developers
What is css
CSS for Beginners
USER INTERFACE DESIGN PPT
Web Design
Tech talk on Tailwind CSS
Web Development
Website Layout and Structure
Html & Css presentation
Html notes with Examples
Web Designing Presentation
Ad

Viewers also liked (10)

PPTX
Overview of c language
PPTX
C Programming Language Tutorial for beginners - JavaTpoint
PPTX
Web design - HTML (Hypertext Markup Language) introduction
PPTX
WEB PAGE DESIGN USING HTML
PPT
Introduction to html
PDF
C notes.pdf
PPTX
C language ppt
PPT
Basics of C programming
PPTX
PPSX
INTRODUCTION TO C PROGRAMMING
Overview of c language
C Programming Language Tutorial for beginners - JavaTpoint
Web design - HTML (Hypertext Markup Language) introduction
WEB PAGE DESIGN USING HTML
Introduction to html
C notes.pdf
C language ppt
Basics of C programming
INTRODUCTION TO C PROGRAMMING
Ad

Similar to Basic of web design (20)

PPT
Introduction to web design
PPT
Introduction to web_design_cs_final_ason
PPTX
Web Designing Training in Ambala ! BATRA COMPUTER CENTRE
PPTX
Basics of Front End Web Dev PowerPoint
PDF
Introduction to HTML programming for webpages.pdf
PPT
HTML course.ppt
PPT
Supplement web design
PPT
Unit 2 (html)
PPTX
Session ii(html)
PPTX
All About HTML Web Development and its fundamentals
PPT
Web Design-III IT.ppt
PPT
Web Design.ppt
PPTX
Part 1 -HTML- Basic_Spring 2023.pptx
PPT
IntroHTMzczczscasasaklahduasihiaSUJScgGJKKL.ppt
PPT
PPT
Table tags 2
PDF
Pm shandilya-s-wcodew-web-methodology
PPT
Introduction to web design
PPT
HTML & CSS Workshop Notes
Introduction to web design
Introduction to web_design_cs_final_ason
Web Designing Training in Ambala ! BATRA COMPUTER CENTRE
Basics of Front End Web Dev PowerPoint
Introduction to HTML programming for webpages.pdf
HTML course.ppt
Supplement web design
Unit 2 (html)
Session ii(html)
All About HTML Web Development and its fundamentals
Web Design-III IT.ppt
Web Design.ppt
Part 1 -HTML- Basic_Spring 2023.pptx
IntroHTMzczczscasasaklahduasihiaSUJScgGJKKL.ppt
Table tags 2
Pm shandilya-s-wcodew-web-methodology
Introduction to web design
HTML & CSS Workshop Notes

More from Singsys Pte Ltd (20)

PPTX
Technical Seminar Series: GIT Pull Requests Best Practices
PPTX
Laravel Security Standards
PPTX
Android OS - The Journey of most popular Operating System
PPTX
How to do Memory Optimizations in Android
PPTX
iOS Application Battery Optimization Techniques
PPTX
Android Battery optimization Android Apps
PPTX
How to Create WordPress Website in Easy Steps
PPTX
Basics of-linux
PPTX
PPTX
Introduction to facebook sdk
PPTX
Html5 tutorial for beginners
PPTX
Beginners css tutorial for web designers
PPT
Joomla 3 installation and management guide
PPT
Joomla Introduction & Installation Tutorial
PPTX
Embedded Technology
PPT
Java Tutorial
PPTX
Technical seo tips for web developers
PPTX
WordPress Website Design and Development
PPTX
Being a designer
PPT
Points for Design and Development of SEO friendly websites
Technical Seminar Series: GIT Pull Requests Best Practices
Laravel Security Standards
Android OS - The Journey of most popular Operating System
How to do Memory Optimizations in Android
iOS Application Battery Optimization Techniques
Android Battery optimization Android Apps
How to Create WordPress Website in Easy Steps
Basics of-linux
Introduction to facebook sdk
Html5 tutorial for beginners
Beginners css tutorial for web designers
Joomla 3 installation and management guide
Joomla Introduction & Installation Tutorial
Embedded Technology
Java Tutorial
Technical seo tips for web developers
WordPress Website Design and Development
Being a designer
Points for Design and Development of SEO friendly websites

Recently uploaded (20)

PDF
UNIT 1 Introduction fnfbbfhfhfbdhdbdto Java.pptx.pdf
PDF
Wio LTE JP Version v1.3b- 4G, Cat.1, Espruino Compatible\202001935, PCBA;Wio ...
PDF
Emailing DDDX-MBCaEiB.pdf DDD_Europe_2022_Intro_to_Context_Mapping_pdf-165590...
PDF
Design Thinking - Module 1 - Introduction To Design Thinking - Dr. Rohan Dasg...
PPTX
artificialintelligencedata driven analytics23.pptx
PPTX
ANATOMY OF ANTERIOR CHAMBER ANGLE AND GONIOSCOPY.pptx
PPTX
Tenders & Contracts Works _ Services Afzal.pptx
PPTX
BSCS lesson 3.pptxnbbjbb mnbkjbkbbkbbkjb
PDF
SEVA- Fashion designing-Presentation.pdf
DOCX
The story of the first moon landing.docx
PDF
Benefits_of_Cast_Aluminium_Doors_Presentation.pdf
PPTX
AD Bungalow Case studies Sem 2.pptxvwewev
PPTX
HPE Aruba-master-icon-library_052722.pptx
PDF
Trusted Executive Protection Services in Ontario — Discreet & Professional.pdf
PDF
BRANDBOOK-Presidential Award Scheme-Kenya-2023
PDF
Key Trends in Website Development 2025 | B3AITS - Bow & 3 Arrows IT Solutions
PPTX
Causes of Flooding by Slidesgo sdnl;asnjdl;asj.pptx
PDF
YOW2022-BNE-MinimalViableArchitecture.pdf
PPT
Machine printing techniques and plangi dyeing
PPT
pump pump is a mechanism that is used to transfer a liquid from one place to ...
UNIT 1 Introduction fnfbbfhfhfbdhdbdto Java.pptx.pdf
Wio LTE JP Version v1.3b- 4G, Cat.1, Espruino Compatible\202001935, PCBA;Wio ...
Emailing DDDX-MBCaEiB.pdf DDD_Europe_2022_Intro_to_Context_Mapping_pdf-165590...
Design Thinking - Module 1 - Introduction To Design Thinking - Dr. Rohan Dasg...
artificialintelligencedata driven analytics23.pptx
ANATOMY OF ANTERIOR CHAMBER ANGLE AND GONIOSCOPY.pptx
Tenders & Contracts Works _ Services Afzal.pptx
BSCS lesson 3.pptxnbbjbb mnbkjbkbbkbbkjb
SEVA- Fashion designing-Presentation.pdf
The story of the first moon landing.docx
Benefits_of_Cast_Aluminium_Doors_Presentation.pdf
AD Bungalow Case studies Sem 2.pptxvwewev
HPE Aruba-master-icon-library_052722.pptx
Trusted Executive Protection Services in Ontario — Discreet & Professional.pdf
BRANDBOOK-Presidential Award Scheme-Kenya-2023
Key Trends in Website Development 2025 | B3AITS - Bow & 3 Arrows IT Solutions
Causes of Flooding by Slidesgo sdnl;asnjdl;asj.pptx
YOW2022-BNE-MinimalViableArchitecture.pdf
Machine printing techniques and plangi dyeing
pump pump is a mechanism that is used to transfer a liquid from one place to ...

Basic of web design

  • 1. Basic of web Design and Basic Fundamentals of HTML Devendra Shukla (Senior web designer)
  • 2. Definition of Web Design Web Design is a skill of creating presentations of content (usually hypertext or hypermedia that is delivered to an end-user through the World Wide Web, by way of a Web browser or either Web-enabled software like Internet clients, microblogging and RSS feeders.
  • 3. Web Design Basics What is a good Web site from a design standpoint?
  • 4. How We Read Text Following normal reading habits, the users eye moves from left to right
  • 5. How We View Screens Looking at a screen, the users eye scans in a more clockwise pattern
  • 6. How Will Your Users Read/View? If a page uses a lot of text, the user will read in a more traditional, left to right manner. If a page has more graphical elements, the user is more likely to take in the whole page.
  • 7. Accepted Relative Areas of Importance
  • 8. Think Before you do anything else, you need to spend time thinking about the 4w’s. What is the purpose of the web page/site? Who is your target audience? What will bring your audience back? Where will your audience be using the site?
  • 9. Research WebSites This is a very important part in the creation of a web site, and usually very useful. Spend time looking at other internet sites, particularlly your competitores You can get any ideas you can use and improve on Sites with lots of animation are not always the best. You must also keep in mind that not everyone has a fast Internet connection.
  • 10. Principles of good web design Visitor-centric, clear purpose Progressive disclosure Displays quickly Browser compatible Intuitive navigation Spelling, grammar, writing Attractive design, easy to read Cultural bias? (Regional? Domestic? International?) No technical problems (broken links, buggy scripts) Search Engine Accessible
  • 11. Creating a Web Site Once you have decided to establish a web site there are three steps to getting it online. 1 - Get a domain name - This is your personal/private address on the Web. 2 - Find a web hosting service- Here is where your website will reside. Free vs Private Web Hosting 3 - Design, build and upload your website - The process of website creation.
  • 12. Creating your Web Site Technologies & Tools Markup Languages  HTML, DHTML, XML, XSLT, etc.... Cascading Style Sheets (CSS) Scripting languages  perl,javascript,php, etc.... Web creation and editing software  Notepad, FrontPage, Coldfusion, Flash, Hotmetal, Site Builder, etc..
  • 13. HTML Fundamentals What is HTML? Telling the browser what to do, and what purpose to use. A series of tags that are integrated into a text document. Tags are ;  surrounded with angle brackets like this  <B> or <I>. Most tags come in pairs  exceptions: <P>, <br>, <li> tags … The first tag turns the action on, and the second turns it off.  Clear text  Ignores white space  Comprised of tags <tag />  Open tags and closed tags
  • 14. HTML Fundamentals Open tags <name attributes/> <hr/>, <br/> <img src=“url” width=‘100px’ height=’60px’/> Closed tags <name attributes> stuff </name> <b>text to be bolded</b> <h1>level 1 heading text</h1> Comments < ! - - comment text -- >
  • 15. The second tag(off switch) starts with a forward slash.  For example ,<B> text </B> can embedded, for instance, to do this:  <HEAD><TITLE> Your text </HEAD></TITLE> it won't work.  The correct order is <HEAD><TITLE> Your text </TITLE></HEAD> not case sensitivity. Many tags have attributes.  For example, <P ALIGN=CENTER> centers the paragraph following it. Some browsers don't support the some tags and some attributes.
  • 16. Tags in head <TITLE>...</TITLE>-- puts text on the browser's title bar. <META>…</META>-- data (information) about data. <HEAD>...</HEAD>-- contains information about the document
  • 17. Tags in Body Let's talk Text Heading: <H1> </H1> Center:<Center> </Center> Line Break <P> ,<Br> Phrase Markups: <I></I> ,<B></B> Create a List  Unordered list : <UL><li>  Ordered list: <OL><li>  Nested
  • 18. Add some Link Use <A href=filename|URL></a>tags How to specify Relative pathnames Kinds of URLs https://www.facebook.com https://gopher.myhost.com/ - news://news.nuri.net - mailto:skrhee@women.or.kr
  • 19. How to make colors changes? Hexadecimal number :  Color names : <Font color=white> Changing the Background color  <BODY BGCOLOR=#19378a> Changing Text color  <BODY BGCOLOR=#19378a TEXT=#ffffff LINK=#ffff66 VLINK=#66ffff> Spot color  <FONT COLOR=#66ffcc>WENT'99</FONT> Image Background  <BODY BACKGROUND=bgimg.gif >
  • 20. HTML – Fundamentals Headings Renders text as a heading, the rendering depending on the level of heading selected. Headings should be automatically spaced from the body text. <h1>Heading 1 level text</h1> <h2>Heading 2 level text</h2> <h3>Heading 3 level text</h3> <h4>Heading 4 level text</h4> <h5>Heading 5 level text</h5> <h6>Heading 6 level text</h6>
  • 21. HTML – Fundamentals Document Structure Unordered list Ordered list <ul> <li>apples</li> <li>bananas</li> <li>grapes</li> <li>strawberries</li> </ul> <ol type=‘i’ start=‘2’> <li>apples</li> <li>bananas</li> <li>grapes</li> <li>strawberries</li> </ol>
  • 22. HTML – Fundamentals Tables <TABLE> <CAPTION ALIGN="bottom">Class Grades</CAPTION> <TR> <TH>Student</TH> <TH>Grade</TH> </TR> <TR> <TD>Tom</TD> <TD>B+</TD> </TR> <TR> <TD>Sue</TD> <TD>A-</TD> </TR> </TABLE>
  • 25. HTML – Fundamentals Tables <TABLE BORDER=1 WIDTH="50%" CELLPADDING=5 ALIGN="center"> <TR> <TD colspan=2 align='center'> <font color="red"><b>Student Grades</b></font> </TD> </TR> <TR> <TD><b>Student</b></TD> <TD><b>Grade</b></TD> </TR> <TR> <TD>Tom</TD> <TD rowspan=2>A</TD> </TR> <TR> <TD>Sue</TD> </TR> </TABLE>
  • 27. HTML – Fundamentals Div <div attributes> content </div> attributes ID=“name” STYLE = “style parameters re: CSS”
  • 28. HTML – Fundamentals Div < DIV ID=“fred” STYLE = “POSITION:absolute|relative; VISIBILITY:visible:hidden; Z-INDEX:number; WIDTH:width in pixels; HEIGHT:height in pixels; TOP:pixels from top of page or block; LEFT:pixels from left edge of page or block; PADDING:margin in pixels; other style attributes; “ > content </DIV>
  • 30. HTML – Fundamentals Div <div style="position:absolute; left:100px; top:100px; width:100px; height:100px; background-color:#ffffff; "> </div>
  • 32. Thank You! Devendra Shukla (Senior web designer)