Dynamic HTML is the combine document of JavaScript, CSS, DOM (Document Object Model), etc.
About Dynamic HTML
What is Dynamic HTML?
Dynamic HTML is a mechanism of providing dynamic content and style on the web while minimizing load on servers.
Who do you envision using Dynamic HTML?
Web developers, designers, and HTML authors will be able to take advantage of Dynamic HTML through a wide variety of tools.
Will download time be longer for pages enhanced with Dynamic HTML?
Dynamic HTML enables authors to create pages based on HTML and script that download more quickly, with fewer Java applets and ActiveX controls Dynamic HTML page loading is also asynchronous, allowing users to read or interect with the document while further downloading is taking place.
CSS (Cascading Style Sheet) Code
.background_style_color {
background-color: #FF9999;
}
.background_style_image {
background-image: url(../../Basics of Computer Dreamweaver/Fourth Class_clip_image002_0001.jpg);
}
.background_style_repeat {
background-image: url(../../Basics of Computer Dreamweaver/Fourth Class_clip_image002_0001.jpg);
background-repeat: repeat;
}
.background_style_position {
background-image: url(../../Basics of Computer Dreamweaver/Fourth Class_clip_image002_0001.jpg);
background-position: center center;
}
.background_style_attach_fixed {
background-attachment: fixed;
background-image: url(../../Basics of Computer Dreamweaver/Fourth Class_clip_image002_0001.jpg);
}
.background_style_attach_scroll {
background-attachment: scroll;
background-image: url(../../Basics of Computer Dreamweaver/Fourth Class_clip_image002_0001.jpg);
}
.style1 {
font-family: "Times New Roman", Times, serif;
font-size: 16px;
font-style: italic;
font-weight: bold;
font-variant: normal;
}
.word_spacing_style {
word-spacing: 5px;
}
.letter_spacing_style {
letter-spacing: 5px;
}
.verticle_direction_style_1 {
vertical-align: super;
}
.verticle_direction_style_2 {
vertical-align: middle;
}
.align_text_style_1 {
text-align: center;
}
.align_text_style_2 {
text-align: justify;
}
.height_style {
height: 10px;
}
.line_height_style {
line-height: 100px;
}
.text_indent_style {
text-indent: 50px;
}