0% found this document useful (0 votes)
233 views5 pages

DOCTYPE HTML

The document discusses web technologies and their applications. It introduces HTML, CSS, JavaScript and PHP. It describes semantic markup in HTML, the structure of HTML documents, and CSS properties like selectors, the box model, and text styling. It also shows examples of HTML elements like links, bold, italics, subscripts and superscripts.

Uploaded by

Sanath Patil
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
233 views5 pages

DOCTYPE HTML

The document discusses web technologies and their applications. It introduces HTML, CSS, JavaScript and PHP. It describes semantic markup in HTML, the structure of HTML documents, and CSS properties like selectors, the box model, and text styling. It also shows examples of HTML elements like links, bold, italics, subscripts and superscripts.

Uploaded by

Sanath Patil
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

<!

DOCTYPE html>

<html>

<head>

<title>Web Technology And Its Applications</title>

<style>

code, p {

color: red;

text-align: center;

*{

text-align: center;

color: blue;

i{

text-align: center;

a:link {

color: red;

a:visited {

color: green;

a:hover {

color: hotpink;

}
a:active {

color: blue;

p::first-line {

color: #ff0000;

font-variant: small-caps;

p::first-letter {

color: #ff0000;

font-size: 25px;

p:first-child{

text-transform: capitalize;

</style>

</head>

<body>

<a href="www.google.co.in"><code>Google</code>G</a><br>

<abbr title="Web Technology and its Applications">WTA module-1</abbr>

<div><p>Introduction to HTML, What is HTML and Where did it come from?, HTML Syntax,
Semantic Markup, Structure of HTML Documents, Quick Tour of HTML Elements, HTML5 Semantic
Structure Elements, Introduction to CSS, What is CSS, CSS Syntax, Location of Styles, Selectors, The
Cascade: How

Styles Interact, The Box Model, CSS Text Styling.</p> </div>

<code>A piece of code</code>

<b>Design Client-Side programs using JavaScript and Server-Side programs using PHP</b>

<i>Illustrate the <strong>Semantic Structure</strong> of HTML and CSS</i>

<p>This text contains <sub>subscript</sub> text.</p>

<p>This text contains <sup>superscript</sup> text.</p>


</body></html>

<!DOCTYPE html>

<html>

<head>

<title>Web Technology And Its Applications</title>

<style>

p{

box-sizing: content-box;

border: 3px solid black;

text-align: center;

margin: 25px 20px 100px 0px;

background-color: cadetblue;

b{

border: 4px dashed black;

padding: 20px;

</style>
</head>

<body>

<abbr title="Web Technology and its Applications">WTA module-1</abbr>

<ol>

<li>First</li>

<li>second</li>

<li>third</li>

</ol>

<ul>

<li>first</li>

<li>second</li>

<li>third</li>

</ul>

<p>Introduction to HTML, What is HTML and Where did it come from?, HTML Syntax, Semantic
Markup, Structure of HTML Documents, Quick Tour of HTML Elements, HTML5 Semantic Structure
Elements, Introduction to CSS, What is CSS, CSS Syntax, Location of Styles, Selectors, The Cascade:
How

Styles Interact, The Box Model, CSS Text Styling.</p>

<code>A piece of code</code>

<b>Design Client-Side programs using JavaScript and Server-Side programs using PHP</b>

<i>Illustrate the Semantic Structure of HTML and CSS</i>

</body></html>

You might also like