WT Writeup 2
WT Writeup 2
TITLE
Implement a web page index.htm for any client website (e.g., a restaurant website project)
using following:
a. HTML syntax: heading tags, basic tags and attributes, frames, tables, images, lists, links
for text and images, forms etc.
b. Use of Internal CSS, Inline CSS, External CSS
OBJECTIVES
THEORY-CONCEPT
HTML: HTML is the standard markup language for creating Web pages.
HTML Versions:
HTML 1991
HTML 2.0 1995
HTML 3.2 1997
HTML 4.01 1999
XHTML 2000
HTML 5 2014
Table.1: HTML Versions
CSS:
CSS stands for Cascading Style Sheet. It is nothing, but design language intended to simplify
the process of making web pages presentable.CSS handles the feel and look part of a web
page.By using CSS, one can control the color of text, style of fonts, spacing between
paragraphs, layout designs.
CSS is easy to learn, easy to understandand it provides powerful control on presentation of
an HTML document.
Advantages of CSS:
It saves the time, Pages load faster, Easy maintenance, Superior styles to HTML, Multiple
Device Compatibility, Global web standards, Offline Browsing, Platform Independence.
CSS3 Modules:
CSS3 Modules are having old CSS specifications as well as extension features.
Box Model
Selectors
Background
Border
Image Values and Replaced Content
Text Effects
Animations
2D/3D Transformations
Multiple Column Layout
User Interface
TECHNOLOGY / TOOL
Inline - by using the style attribute in HTML elements. An inline CSS is used to apply
a unique style to a single HTML element.
Example:<style>
body {background-color: powderblue;}
h1 {color: blue;}
p {color:
red;}
</style>
External - by using an external CSS file. An external style sheet is used to define the
style for many HTML pages. With an external style sheet, you can change the look of
an entire web site, by changing one file!To use an external style sheet, add a link to it
in the <head> section of the HTML page.
Use the HTML <head> element to store <style> and <link> elements
Use the CSS color property for text colors
Use the CSS font-family property for text fonts
Use the CSS font-size property for text sizes
Use the CSS border property for borders
Use the CSS padding property for space inside the border
Use the CSS margin property for space outside the border
DESIGN / EXECUTION STEPS