SlideShare a Scribd company logo
Designing forthe Web Overview
CHAPTER
DISPLAY RESOLUTION
• The Current trend is that more and more computers are using a
screen size of 1024x768 pixels or more.
• Account for “Chrome”!
– Chrome refers to scroll bars and other items in a browser window that takes
space away from the viewable page. (Google/Yahoo toolbars)
– 750-775px wide is safe for a 800px wide browser window
– 900-960 wide is safe for a 1024px wide browser window
• Users will scroll! It has become more common for users to
understand that you have to scroll down the page to access certain
content.
FONTSFOR THE WEB
• Make sure that your fonts are cross platform compatible! This
means they should be common fonts found on windows/mac
machines.
• Refer to this list:
– http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html
• Choose sans-serif fonts for large blocks of text. Sans-serif
fonts are easier to read on a monitor.
• Serif fonts are good for headings and short blocks of text.
COMMON WEB IMAGE FORMATS
• JPG - Joint Photographic Experts Group
– used for photorealistic images
– Use a lossy compression method. Some image data will be lost during
compression.
• GIF - Graphic Interchange Format
– used for logos and drawings with limited colors
• PNG – Portable Network Graphics
– PNG-8 – Like a gif image
– PNG-24 – Like a JPG image but supports transparency.
• Images for the web are usually 72dpi (dots per inch)
HTML – HYPERTEXT MARKUPLANGUAGE
• Elements –
– Basic structure for HTML markup as they tell the browser what to render.
– All elements usually have a start tag and an end tag.
– Made up of two basic properties: attributes and content.
• Attributes
– Name-value pairs written within the start tag of an element after the element
name. The value is usually enclosed in quotes.
– Ex: <a href=“http://www.com205.safiredesign.com”>Multimedia Apps </a>
• Continuity
– Make sure your elements stay in order!
– <p><b>This is bold!</p></b> is not correct.
– <p><b>This is Bold!</b></p> is correct.
XHTML
• XHTML – eXtensible Hypertext Markup Language
– HTML syntax conforms to XML specs.
– All elements and attributes must be in lowercase.
– All element tags must be closed.
– Ex: <p>Paragraph Tag</p>, <br />
• Structural or Semantic Markup
– Tags imply meaning. A list of items in written using one of the list
elements. Headings are denoted using the Heading elements,
etc…
HEADING ELEMENTS
• There are 6 heading elements included in HTML.
– <h1> Heading 1 </h1>
– <h2> Heading 2 </h2>
– <h3> Heading 3 </h3>
– <h4> Heading 4 </h4>
– <h5> Heading 5 </h5>
– <h6> Heading 6 </h6>
• Search engines place importance on the text between heading tags.
• Treated correctly regardless of style
• Convey meaning to the user.
INLINE STYLES
• Inline styles are used within the HTML document to add
style to the text. Choose strong and emphasized to
convey the most meaning.
– Bold - <b>Bolded Text</b>
– Underline - <u>Underlined Text</u>
– Italic - <i>Italic Text</i>
– Strong - <strong>Strong Text</strong>
– Emphasized - <em>Emphasized Text</em>
ANCHORS/LINKS
• Links allows us to point to files or specific sections of a
web page.
– <a href=“http://www.mywebpage.com”> My Page </a>
• Links have different states
– Link – normal state
– Hover – when moused over
– Visited – after link has been clicked
TEXT BLOCKS& QUOTES
• Paragraph Tag
– <p>Contents of the paragraph</p>
• Blockquote Tag
– <blockquote>Contents of a blockquote are usually
indented.</blockquote>
• Code Tag
– <code>The code tag is used to place example blocks of
demonstration code</code>
TABLES
• Tables are used to markup tabular data like calendars,
spreadsheets, charts, and schedules.
• Table-based layout - Using the grid system of a table to layout an
entire webpage. (Not standards compliant!)
<table cellspacing=“0” cellpadding=“0” border=“1”>
<tr>
<td>Table Data</td>
<td>Table Data</td>
</tr>
</table>
FORMS
• Forms are used to collect data from users.
• Since some forms can be complicated most designers still employ
the use of a table to align all the elements in a form.
<form method=“post” action=“”>
<label for=“email”>Email: </label>
<input type=“text” name=“email” id=“email” />
<input type=“submit” name=“submit” />
</form>
LISTS- ORDERED LISTS
• Ordered Lists are used for step by step instructions.
• List items can have either letters, numbers or roman numerals.
<ol>
<li>List Item 1</li>
<li>List Item 2</li>
</ol>
LISTS– UNORDERED LISTS
• Unordered lists are used for generic lists of items.
• They can also be styled using CSS and used for navigation.
• Default style is a bulleted list.
• List shapes and style can be changed using CSS.
<ul>
<li>List Item 1</li>
<li>List Item 2</li>
</ul>
LISTS- DEFINITION LISTS
• Definition lists are used to provide a relationship between
term/definition pairs.
• These can be easily styled using CSS.
<dl>
<dt>Term</dt>
<dd>Definition</dd>
<dt>Term</dt>
<dd>Defininition</dd>
</dl>
CSS– CASCADING STYLE SHEETS
• Cascading Style Sheets is the W3C Standard for controlling the
visual presentation of web pages.
• A style sheet consists of one or more rules that describe how page
elements should be displayed.
• A web page can have more than one style sheet attached to it.
• The cascade order provides a set of rules for resolving conflicts
between different style sheets. Styles with more weight take
precedence over styles with lower weight.
• CSS Styles can be applied to a document in 3 ways
CSSRULE STRUCTURE
• Every CSS rule has two parts
– the selector – specifies the parts of the document to which the
style should be applied
– the declaration – a combination of the CSS property and a value
for that property.
Declaration
Property Value
Selector
H1 { color: purple }
CSS– INLINE STYLES
• Inline Styles – style information is specified for an individual element
using the style attribute within that elements HTML tag.
<h1 style=“color: purple; font-size: 20px;”> Purple Heading</h1>
CSS– EMBEDDED STYLES
• Embedded Style Sheets – placed at the top of an HTML document
inside the Style element which must be placed within the head
portion of the document.
<style type=“text/css”>
h1 {
color: purple;
font-size: 20px;
}
</style>
CSS– EXTERNAL STYLE SHEETS
• External Style Sheets – style rules that are stored in a
separate document and referenced from an HTML
document in one of two ways.
– <link rel=“stylesheet” type=“text/css” href=“mystyles.css” />
– <style type=“text/css”
@import url(mystyles.css);
</style>

More Related Content

What's hot

Getting Started with the NetBeans Platform
Getting Started with the NetBeans PlatformGetting Started with the NetBeans Platform
Getting Started with the NetBeans Platform
Geertjan Wielenga
 
Ch 3: Big Concepts
Ch 3: Big ConceptsCh 3: Big Concepts
Ch 3: Big Concepts
Steve Guinan
 
Web Design Norms
Web Design NormsWeb Design Norms
Web Design Norms
Shantanu Suryawanshi
 
Web Design Course Srigsystems
Web Design Course SrigsystemsWeb Design Course Srigsystems
Web Design Course Srigsystems
SriG Systems
 
Introducing Joomla! CMS
Introducing Joomla! CMSIntroducing Joomla! CMS
Introducing Joomla! CMS
Kandarp Vyas
 
Usability engineering Category specific guidelines(web structure)
Usability engineering Category specific guidelines(web structure)Usability engineering Category specific guidelines(web structure)
Usability engineering Category specific guidelines(web structure)
REHMAT ULLAH
 
NetBeans Platform for Rich Client Development
NetBeans Platform for Rich Client DevelopmentNetBeans Platform for Rich Client Development
NetBeans Platform for Rich Client Development
Widura Wijenayake
 
Dot Net Nuke
Dot Net NukeDot Net Nuke
Dot Net Nuke
jitendraparmar
 
Introduction to .net and asp
Introduction to .net and aspIntroduction to .net and asp
Introduction to .net and asp
Prachi Agarwal
 
itPage LDC 09 Presentation
itPage LDC 09 PresentationitPage LDC 09 Presentation
itPage LDC 09 Presentation
Eric Landmann
 
online music store
online music storeonline music store
online music store
swatikandoi
 
Overview of Coding Languages
Overview of Coding LanguagesOverview of Coding Languages
Overview of Coding Languages
GlowTouch
 
WordPress as a CMS - Case Study of an Organizational Intranet
WordPress as a CMS - Case Study of an Organizational IntranetWordPress as a CMS - Case Study of an Organizational Intranet
WordPress as a CMS - Case Study of an Organizational Intranet
Tech Liminal
 
Waleed Abdelkebir Cv En 2009
Waleed Abdelkebir  Cv En 2009Waleed Abdelkebir  Cv En 2009
Waleed Abdelkebir Cv En 2009
abcwalid
 
Web programming
Web programmingWeb programming
Web programming
Ishucs
 
Introduction to web development
Introduction to web developmentIntroduction to web development
Introduction to web development
Houria Bouchagour
 
DOC Presentation by DOC Contractor Alison McCauley
DOC Presentation by DOC Contractor Alison McCauleyDOC Presentation by DOC Contractor Alison McCauley
DOC Presentation by DOC Contractor Alison McCauley
Federal Communicators Network
 
Web development
Web developmentWeb development
Web development
Melania Andrisan (Danciu)
 
Online Drupal Training Syllabus
Online Drupal Training SyllabusOnline Drupal Training Syllabus
Online Drupal Training Syllabus
vibrantuser
 
Anatomy and Architecture of a WordPress Theme
Anatomy and Architecture of a WordPress ThemeAnatomy and Architecture of a WordPress Theme
Anatomy and Architecture of a WordPress Theme
Julie Kuehl
 

What's hot (20)

Getting Started with the NetBeans Platform
Getting Started with the NetBeans PlatformGetting Started with the NetBeans Platform
Getting Started with the NetBeans Platform
 
Ch 3: Big Concepts
Ch 3: Big ConceptsCh 3: Big Concepts
Ch 3: Big Concepts
 
Web Design Norms
Web Design NormsWeb Design Norms
Web Design Norms
 
Web Design Course Srigsystems
Web Design Course SrigsystemsWeb Design Course Srigsystems
Web Design Course Srigsystems
 
Introducing Joomla! CMS
Introducing Joomla! CMSIntroducing Joomla! CMS
Introducing Joomla! CMS
 
Usability engineering Category specific guidelines(web structure)
Usability engineering Category specific guidelines(web structure)Usability engineering Category specific guidelines(web structure)
Usability engineering Category specific guidelines(web structure)
 
NetBeans Platform for Rich Client Development
NetBeans Platform for Rich Client DevelopmentNetBeans Platform for Rich Client Development
NetBeans Platform for Rich Client Development
 
Dot Net Nuke
Dot Net NukeDot Net Nuke
Dot Net Nuke
 
Introduction to .net and asp
Introduction to .net and aspIntroduction to .net and asp
Introduction to .net and asp
 
itPage LDC 09 Presentation
itPage LDC 09 PresentationitPage LDC 09 Presentation
itPage LDC 09 Presentation
 
online music store
online music storeonline music store
online music store
 
Overview of Coding Languages
Overview of Coding LanguagesOverview of Coding Languages
Overview of Coding Languages
 
WordPress as a CMS - Case Study of an Organizational Intranet
WordPress as a CMS - Case Study of an Organizational IntranetWordPress as a CMS - Case Study of an Organizational Intranet
WordPress as a CMS - Case Study of an Organizational Intranet
 
Waleed Abdelkebir Cv En 2009
Waleed Abdelkebir  Cv En 2009Waleed Abdelkebir  Cv En 2009
Waleed Abdelkebir Cv En 2009
 
Web programming
Web programmingWeb programming
Web programming
 
Introduction to web development
Introduction to web developmentIntroduction to web development
Introduction to web development
 
DOC Presentation by DOC Contractor Alison McCauley
DOC Presentation by DOC Contractor Alison McCauleyDOC Presentation by DOC Contractor Alison McCauley
DOC Presentation by DOC Contractor Alison McCauley
 
Web development
Web developmentWeb development
Web development
 
Online Drupal Training Syllabus
Online Drupal Training SyllabusOnline Drupal Training Syllabus
Online Drupal Training Syllabus
 
Anatomy and Architecture of a WordPress Theme
Anatomy and Architecture of a WordPress ThemeAnatomy and Architecture of a WordPress Theme
Anatomy and Architecture of a WordPress Theme
 

Viewers also liked

Chapter 6 Graphics
Chapter 6 GraphicsChapter 6 Graphics
Chapter 6 Graphics
shelly3160
 
Chapter 5 Text
Chapter 5 TextChapter 5 Text
Chapter 5 Text
shelly3160
 
Supplement Color
Supplement ColorSupplement Color
Supplement Color
shelly3160
 
Chapter 2 Digital Data
Chapter 2 Digital DataChapter 2 Digital Data
Chapter 2 Digital Data
shelly3160
 
Chapter 4 Computer Software
Chapter 4 Computer SoftwareChapter 4 Computer Software
Chapter 4 Computer Software
shelly3160
 
Chapter Multimedia Revolution
Chapter Multimedia RevolutionChapter Multimedia Revolution
Chapter Multimedia Revolution
shelly3160
 
Chapter 9 animation
Chapter 9 animationChapter 9 animation
Chapter 9 animation
shelly3160
 

Viewers also liked (7)

Chapter 6 Graphics
Chapter 6 GraphicsChapter 6 Graphics
Chapter 6 Graphics
 
Chapter 5 Text
Chapter 5 TextChapter 5 Text
Chapter 5 Text
 
Supplement Color
Supplement ColorSupplement Color
Supplement Color
 
Chapter 2 Digital Data
Chapter 2 Digital DataChapter 2 Digital Data
Chapter 2 Digital Data
 
Chapter 4 Computer Software
Chapter 4 Computer SoftwareChapter 4 Computer Software
Chapter 4 Computer Software
 
Chapter Multimedia Revolution
Chapter Multimedia RevolutionChapter Multimedia Revolution
Chapter Multimedia Revolution
 
Chapter 9 animation
Chapter 9 animationChapter 9 animation
Chapter 9 animation
 

Similar to Supplement web design

DHTML
DHTMLDHTML
SDP_-_Module_4.ppt
SDP_-_Module_4.pptSDP_-_Module_4.ppt
SDP_-_Module_4.ppt
ssuser568d77
 
Unit-3-CSS-BWT.pptx
Unit-3-CSS-BWT.pptxUnit-3-CSS-BWT.pptx
Unit-3-CSS-BWT.pptx
Tanu524249
 
Upstate CSCI 450 WebDev Chapter 3
Upstate CSCI 450 WebDev Chapter 3Upstate CSCI 450 WebDev Chapter 3
Upstate CSCI 450 WebDev Chapter 3
DanWooster1
 
Css
CssCss
GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1
Heather Rock
 
Cascading Style Sheets for web browser.pptx
Cascading Style Sheets for web browser.pptxCascading Style Sheets for web browser.pptx
Cascading Style Sheets for web browser.pptx
alvindalejoyosa1
 
Web design-workflow
Web design-workflowWeb design-workflow
Web design-workflow
Peter Kaizer
 
Howcssworks 100207024009-phpapp01
Howcssworks 100207024009-phpapp01Howcssworks 100207024009-phpapp01
Howcssworks 100207024009-phpapp01
Likitha47
 
uptu web technology unit 2 Css
uptu web technology unit 2 Cssuptu web technology unit 2 Css
uptu web technology unit 2 Css
Abhishek Kesharwani
 
CSS Bootstrap.pdf
CSS  Bootstrap.pdfCSS  Bootstrap.pdf
CSS Bootstrap.pdf
Priyankapawar886284
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptx
Stefan Oprea
 
Css
CssCss
Css
CssCss
xhtml_css.ppt
xhtml_css.pptxhtml_css.ppt
xhtml_css.ppt
fakeaccount225095
 
Cascading Style Sheets By Mukesh
Cascading Style Sheets By MukeshCascading Style Sheets By Mukesh
Cascading Style Sheets By Mukesh
Mukesh Kumar
 
Ifi7174 lesson2
Ifi7174 lesson2Ifi7174 lesson2
Ifi7174 lesson2
Sónia
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
Mario Hernandez
 
Introduction to web designing
Introduction to web designingIntroduction to web designing
Introduction to web designing
Rajat Shah
 
World wide web with multimedia
World wide web with multimediaWorld wide web with multimedia
World wide web with multimedia
Afaq Siddiqui
 

Similar to Supplement web design (20)

DHTML
DHTMLDHTML
DHTML
 
SDP_-_Module_4.ppt
SDP_-_Module_4.pptSDP_-_Module_4.ppt
SDP_-_Module_4.ppt
 
Unit-3-CSS-BWT.pptx
Unit-3-CSS-BWT.pptxUnit-3-CSS-BWT.pptx
Unit-3-CSS-BWT.pptx
 
Upstate CSCI 450 WebDev Chapter 3
Upstate CSCI 450 WebDev Chapter 3Upstate CSCI 450 WebDev Chapter 3
Upstate CSCI 450 WebDev Chapter 3
 
Css
CssCss
Css
 
GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1
 
Cascading Style Sheets for web browser.pptx
Cascading Style Sheets for web browser.pptxCascading Style Sheets for web browser.pptx
Cascading Style Sheets for web browser.pptx
 
Web design-workflow
Web design-workflowWeb design-workflow
Web design-workflow
 
Howcssworks 100207024009-phpapp01
Howcssworks 100207024009-phpapp01Howcssworks 100207024009-phpapp01
Howcssworks 100207024009-phpapp01
 
uptu web technology unit 2 Css
uptu web technology unit 2 Cssuptu web technology unit 2 Css
uptu web technology unit 2 Css
 
CSS Bootstrap.pdf
CSS  Bootstrap.pdfCSS  Bootstrap.pdf
CSS Bootstrap.pdf
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptx
 
Css
CssCss
Css
 
Css
CssCss
Css
 
xhtml_css.ppt
xhtml_css.pptxhtml_css.ppt
xhtml_css.ppt
 
Cascading Style Sheets By Mukesh
Cascading Style Sheets By MukeshCascading Style Sheets By Mukesh
Cascading Style Sheets By Mukesh
 
Ifi7174 lesson2
Ifi7174 lesson2Ifi7174 lesson2
Ifi7174 lesson2
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
Introduction to web designing
Introduction to web designingIntroduction to web designing
Introduction to web designing
 
World wide web with multimedia
World wide web with multimediaWorld wide web with multimedia
World wide web with multimedia
 

More from shelly3160

Supplement: Artificial Intelligence
Supplement:  Artificial IntelligenceSupplement:  Artificial Intelligence
Supplement: Artificial Intelligence
shelly3160
 
Chapter 11 Multimedia Development
Chapter 11 Multimedia DevelopmentChapter 11 Multimedia Development
Chapter 11 Multimedia Development
shelly3160
 
Chapter 7 Sound
Chapter 7 SoundChapter 7 Sound
Chapter 7 Sound
shelly3160
 
Chapter 3 Computer Hardware
Chapter 3 Computer HardwareChapter 3 Computer Hardware
Chapter 3 Computer Hardware
shelly3160
 
Chapter 8 Video
Chapter 8 VideoChapter 8 Video
Chapter 8 Video
shelly3160
 
Chapter 12 Professional Issues (digital media)
Chapter 12 Professional Issues (digital media)Chapter 12 Professional Issues (digital media)
Chapter 12 Professional Issues (digital media)
shelly3160
 
Chapter 10 authoring
Chapter 10 authoringChapter 10 authoring
Chapter 10 authoring
shelly3160
 

More from shelly3160 (7)

Supplement: Artificial Intelligence
Supplement:  Artificial IntelligenceSupplement:  Artificial Intelligence
Supplement: Artificial Intelligence
 
Chapter 11 Multimedia Development
Chapter 11 Multimedia DevelopmentChapter 11 Multimedia Development
Chapter 11 Multimedia Development
 
Chapter 7 Sound
Chapter 7 SoundChapter 7 Sound
Chapter 7 Sound
 
Chapter 3 Computer Hardware
Chapter 3 Computer HardwareChapter 3 Computer Hardware
Chapter 3 Computer Hardware
 
Chapter 8 Video
Chapter 8 VideoChapter 8 Video
Chapter 8 Video
 
Chapter 12 Professional Issues (digital media)
Chapter 12 Professional Issues (digital media)Chapter 12 Professional Issues (digital media)
Chapter 12 Professional Issues (digital media)
 
Chapter 10 authoring
Chapter 10 authoringChapter 10 authoring
Chapter 10 authoring
 

Recently uploaded

UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptxUNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
GOWSIKRAJA PALANISAMY
 
NHR Engineers Portfolio 2023 2024 NISHANT RATHI
NHR Engineers Portfolio 2023 2024 NISHANT RATHINHR Engineers Portfolio 2023 2024 NISHANT RATHI
NHR Engineers Portfolio 2023 2024 NISHANT RATHI
NishantRathi18
 
原版定做(penn毕业证书)美国宾夕法尼亚大学毕业证文凭学历证书原版一模一样
原版定做(penn毕业证书)美国宾夕法尼亚大学毕业证文凭学历证书原版一模一样原版定做(penn毕业证书)美国宾夕法尼亚大学毕业证文凭学历证书原版一模一样
原版定做(penn毕业证书)美国宾夕法尼亚大学毕业证文凭学历证书原版一模一样
gpffo76j
 
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
asuzyq
 
Game Concept Presentation for Ukrainian Mythology Based Game With Designs
Game Concept Presentation for Ukrainian Mythology Based Game With DesignsGame Concept Presentation for Ukrainian Mythology Based Game With Designs
Game Concept Presentation for Ukrainian Mythology Based Game With Designs
184804
 
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptxUNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
GOWSIKRAJA PALANISAMY
 
Graphic Design Tools and Software .pptx
Graphic Design Tools and Software   .pptxGraphic Design Tools and Software   .pptx
Graphic Design Tools and Software .pptx
Virtual Real Design
 
Revolutionizing the Digital Landscape: Web Development Companies in India
Revolutionizing the Digital Landscape: Web Development Companies in IndiaRevolutionizing the Digital Landscape: Web Development Companies in India
Revolutionizing the Digital Landscape: Web Development Companies in India
amrsoftec1
 
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
pmgdscunsri
 
一比一原版(UW毕业证)西雅图华盛顿大学毕业证如何办理
一比一原版(UW毕业证)西雅图华盛顿大学毕业证如何办理一比一原版(UW毕业证)西雅图华盛顿大学毕业证如何办理
一比一原版(UW毕业证)西雅图华盛顿大学毕业证如何办理
kecekev
 
EASY TUTORIAL OF HOW TO USE CAPCUT BY: FEBLESS HERNANE
EASY TUTORIAL OF HOW TO USE CAPCUT BY: FEBLESS HERNANEEASY TUTORIAL OF HOW TO USE CAPCUT BY: FEBLESS HERNANE
EASY TUTORIAL OF HOW TO USE CAPCUT BY: FEBLESS HERNANE
Febless Hernane
 
Branding de la empresa de Bolt- 2024.pdf
Branding de la empresa de Bolt- 2024.pdfBranding de la empresa de Bolt- 2024.pdf
Branding de la empresa de Bolt- 2024.pdf
PabloMartelLpez
 
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdfAHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
talaatahm
 
Virtual Tour Application Powerpoint for museum of edinburgh
Virtual Tour Application Powerpoint for museum of edinburghVirtual Tour Application Powerpoint for museum of edinburgh
Virtual Tour Application Powerpoint for museum of edinburgh
millarj46
 
Heuristics Evaluation - How to Guide.pdf
Heuristics Evaluation - How to Guide.pdfHeuristics Evaluation - How to Guide.pdf
Heuristics Evaluation - How to Guide.pdf
Jaime Brown
 
Top Interior Designers in Bangalore.pdf1
Top Interior Designers in Bangalore.pdf1Top Interior Designers in Bangalore.pdf1
Top Interior Designers in Bangalore.pdf1
Decomart Studio
 
ZAPATILLAS 2 X 110 ABRIL.pdf compra economico
ZAPATILLAS 2 X 110 ABRIL.pdf compra economicoZAPATILLAS 2 X 110 ABRIL.pdf compra economico
ZAPATILLAS 2 X 110 ABRIL.pdf compra economico
jhonguerrerobarturen
 
PDF SubmissionDigital Marketing Institute in Noida
PDF SubmissionDigital Marketing Institute in NoidaPDF SubmissionDigital Marketing Institute in Noida
PDF SubmissionDigital Marketing Institute in Noida
PoojaSaini954651
 
Mohannad Abdullah portfolio _ V2 _22-24
Mohannad Abdullah  portfolio _ V2 _22-24Mohannad Abdullah  portfolio _ V2 _22-24
Mohannad Abdullah portfolio _ V2 _22-24
M. A. Architect
 
Technoblade The Legacy of a Minecraft Legend.
Technoblade The Legacy of a Minecraft Legend.Technoblade The Legacy of a Minecraft Legend.
Technoblade The Legacy of a Minecraft Legend.
Techno Merch
 

Recently uploaded (20)

UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptxUNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
 
NHR Engineers Portfolio 2023 2024 NISHANT RATHI
NHR Engineers Portfolio 2023 2024 NISHANT RATHINHR Engineers Portfolio 2023 2024 NISHANT RATHI
NHR Engineers Portfolio 2023 2024 NISHANT RATHI
 
原版定做(penn毕业证书)美国宾夕法尼亚大学毕业证文凭学历证书原版一模一样
原版定做(penn毕业证书)美国宾夕法尼亚大学毕业证文凭学历证书原版一模一样原版定做(penn毕业证书)美国宾夕法尼亚大学毕业证文凭学历证书原版一模一样
原版定做(penn毕业证书)美国宾夕法尼亚大学毕业证文凭学历证书原版一模一样
 
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
 
Game Concept Presentation for Ukrainian Mythology Based Game With Designs
Game Concept Presentation for Ukrainian Mythology Based Game With DesignsGame Concept Presentation for Ukrainian Mythology Based Game With Designs
Game Concept Presentation for Ukrainian Mythology Based Game With Designs
 
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptxUNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
 
Graphic Design Tools and Software .pptx
Graphic Design Tools and Software   .pptxGraphic Design Tools and Software   .pptx
Graphic Design Tools and Software .pptx
 
Revolutionizing the Digital Landscape: Web Development Companies in India
Revolutionizing the Digital Landscape: Web Development Companies in IndiaRevolutionizing the Digital Landscape: Web Development Companies in India
Revolutionizing the Digital Landscape: Web Development Companies in India
 
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
 
一比一原版(UW毕业证)西雅图华盛顿大学毕业证如何办理
一比一原版(UW毕业证)西雅图华盛顿大学毕业证如何办理一比一原版(UW毕业证)西雅图华盛顿大学毕业证如何办理
一比一原版(UW毕业证)西雅图华盛顿大学毕业证如何办理
 
EASY TUTORIAL OF HOW TO USE CAPCUT BY: FEBLESS HERNANE
EASY TUTORIAL OF HOW TO USE CAPCUT BY: FEBLESS HERNANEEASY TUTORIAL OF HOW TO USE CAPCUT BY: FEBLESS HERNANE
EASY TUTORIAL OF HOW TO USE CAPCUT BY: FEBLESS HERNANE
 
Branding de la empresa de Bolt- 2024.pdf
Branding de la empresa de Bolt- 2024.pdfBranding de la empresa de Bolt- 2024.pdf
Branding de la empresa de Bolt- 2024.pdf
 
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdfAHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
 
Virtual Tour Application Powerpoint for museum of edinburgh
Virtual Tour Application Powerpoint for museum of edinburghVirtual Tour Application Powerpoint for museum of edinburgh
Virtual Tour Application Powerpoint for museum of edinburgh
 
Heuristics Evaluation - How to Guide.pdf
Heuristics Evaluation - How to Guide.pdfHeuristics Evaluation - How to Guide.pdf
Heuristics Evaluation - How to Guide.pdf
 
Top Interior Designers in Bangalore.pdf1
Top Interior Designers in Bangalore.pdf1Top Interior Designers in Bangalore.pdf1
Top Interior Designers in Bangalore.pdf1
 
ZAPATILLAS 2 X 110 ABRIL.pdf compra economico
ZAPATILLAS 2 X 110 ABRIL.pdf compra economicoZAPATILLAS 2 X 110 ABRIL.pdf compra economico
ZAPATILLAS 2 X 110 ABRIL.pdf compra economico
 
PDF SubmissionDigital Marketing Institute in Noida
PDF SubmissionDigital Marketing Institute in NoidaPDF SubmissionDigital Marketing Institute in Noida
PDF SubmissionDigital Marketing Institute in Noida
 
Mohannad Abdullah portfolio _ V2 _22-24
Mohannad Abdullah  portfolio _ V2 _22-24Mohannad Abdullah  portfolio _ V2 _22-24
Mohannad Abdullah portfolio _ V2 _22-24
 
Technoblade The Legacy of a Minecraft Legend.
Technoblade The Legacy of a Minecraft Legend.Technoblade The Legacy of a Minecraft Legend.
Technoblade The Legacy of a Minecraft Legend.
 

Supplement web design

  • 1. Designing forthe Web Overview CHAPTER
  • 2. DISPLAY RESOLUTION • The Current trend is that more and more computers are using a screen size of 1024x768 pixels or more. • Account for “Chrome”! – Chrome refers to scroll bars and other items in a browser window that takes space away from the viewable page. (Google/Yahoo toolbars) – 750-775px wide is safe for a 800px wide browser window – 900-960 wide is safe for a 1024px wide browser window • Users will scroll! It has become more common for users to understand that you have to scroll down the page to access certain content.
  • 3. FONTSFOR THE WEB • Make sure that your fonts are cross platform compatible! This means they should be common fonts found on windows/mac machines. • Refer to this list: – http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html • Choose sans-serif fonts for large blocks of text. Sans-serif fonts are easier to read on a monitor. • Serif fonts are good for headings and short blocks of text.
  • 4. COMMON WEB IMAGE FORMATS • JPG - Joint Photographic Experts Group – used for photorealistic images – Use a lossy compression method. Some image data will be lost during compression. • GIF - Graphic Interchange Format – used for logos and drawings with limited colors • PNG – Portable Network Graphics – PNG-8 – Like a gif image – PNG-24 – Like a JPG image but supports transparency. • Images for the web are usually 72dpi (dots per inch)
  • 5. HTML – HYPERTEXT MARKUPLANGUAGE • Elements – – Basic structure for HTML markup as they tell the browser what to render. – All elements usually have a start tag and an end tag. – Made up of two basic properties: attributes and content. • Attributes – Name-value pairs written within the start tag of an element after the element name. The value is usually enclosed in quotes. – Ex: <a href=“http://www.com205.safiredesign.com”>Multimedia Apps </a> • Continuity – Make sure your elements stay in order! – <p><b>This is bold!</p></b> is not correct. – <p><b>This is Bold!</b></p> is correct.
  • 6. XHTML • XHTML – eXtensible Hypertext Markup Language – HTML syntax conforms to XML specs. – All elements and attributes must be in lowercase. – All element tags must be closed. – Ex: <p>Paragraph Tag</p>, <br /> • Structural or Semantic Markup – Tags imply meaning. A list of items in written using one of the list elements. Headings are denoted using the Heading elements, etc…
  • 7. HEADING ELEMENTS • There are 6 heading elements included in HTML. – <h1> Heading 1 </h1> – <h2> Heading 2 </h2> – <h3> Heading 3 </h3> – <h4> Heading 4 </h4> – <h5> Heading 5 </h5> – <h6> Heading 6 </h6> • Search engines place importance on the text between heading tags. • Treated correctly regardless of style • Convey meaning to the user.
  • 8. INLINE STYLES • Inline styles are used within the HTML document to add style to the text. Choose strong and emphasized to convey the most meaning. – Bold - <b>Bolded Text</b> – Underline - <u>Underlined Text</u> – Italic - <i>Italic Text</i> – Strong - <strong>Strong Text</strong> – Emphasized - <em>Emphasized Text</em>
  • 9. ANCHORS/LINKS • Links allows us to point to files or specific sections of a web page. – <a href=“http://www.mywebpage.com”> My Page </a> • Links have different states – Link – normal state – Hover – when moused over – Visited – after link has been clicked
  • 10. TEXT BLOCKS& QUOTES • Paragraph Tag – <p>Contents of the paragraph</p> • Blockquote Tag – <blockquote>Contents of a blockquote are usually indented.</blockquote> • Code Tag – <code>The code tag is used to place example blocks of demonstration code</code>
  • 11. TABLES • Tables are used to markup tabular data like calendars, spreadsheets, charts, and schedules. • Table-based layout - Using the grid system of a table to layout an entire webpage. (Not standards compliant!) <table cellspacing=“0” cellpadding=“0” border=“1”> <tr> <td>Table Data</td> <td>Table Data</td> </tr> </table>
  • 12. FORMS • Forms are used to collect data from users. • Since some forms can be complicated most designers still employ the use of a table to align all the elements in a form. <form method=“post” action=“”> <label for=“email”>Email: </label> <input type=“text” name=“email” id=“email” /> <input type=“submit” name=“submit” /> </form>
  • 13. LISTS- ORDERED LISTS • Ordered Lists are used for step by step instructions. • List items can have either letters, numbers or roman numerals. <ol> <li>List Item 1</li> <li>List Item 2</li> </ol>
  • 14. LISTS– UNORDERED LISTS • Unordered lists are used for generic lists of items. • They can also be styled using CSS and used for navigation. • Default style is a bulleted list. • List shapes and style can be changed using CSS. <ul> <li>List Item 1</li> <li>List Item 2</li> </ul>
  • 15. LISTS- DEFINITION LISTS • Definition lists are used to provide a relationship between term/definition pairs. • These can be easily styled using CSS. <dl> <dt>Term</dt> <dd>Definition</dd> <dt>Term</dt> <dd>Defininition</dd> </dl>
  • 16. CSS– CASCADING STYLE SHEETS • Cascading Style Sheets is the W3C Standard for controlling the visual presentation of web pages. • A style sheet consists of one or more rules that describe how page elements should be displayed. • A web page can have more than one style sheet attached to it. • The cascade order provides a set of rules for resolving conflicts between different style sheets. Styles with more weight take precedence over styles with lower weight. • CSS Styles can be applied to a document in 3 ways
  • 17. CSSRULE STRUCTURE • Every CSS rule has two parts – the selector – specifies the parts of the document to which the style should be applied – the declaration – a combination of the CSS property and a value for that property. Declaration Property Value Selector H1 { color: purple }
  • 18. CSS– INLINE STYLES • Inline Styles – style information is specified for an individual element using the style attribute within that elements HTML tag. <h1 style=“color: purple; font-size: 20px;”> Purple Heading</h1>
  • 19. CSS– EMBEDDED STYLES • Embedded Style Sheets – placed at the top of an HTML document inside the Style element which must be placed within the head portion of the document. <style type=“text/css”> h1 { color: purple; font-size: 20px; } </style>
  • 20. CSS– EXTERNAL STYLE SHEETS • External Style Sheets – style rules that are stored in a separate document and referenced from an HTML document in one of two ways. – <link rel=“stylesheet” type=“text/css” href=“mystyles.css” /> – <style type=“text/css” @import url(mystyles.css); </style>