Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 4

Introduction.html webdev.

css

1
2
HTML Basic Structure
3 { <!DOCTYPE html>
4 <html>
5 <head>
6 <title>Page Title</title>
7 <meta charset="UTF-8"> <link rel="stylesheet"
8 type="text/css" href="styles.css">
9 <style type=“text/css”>
10
*{
</style>
11
</head>
12
<body>
13
</body>
14
} </html>

Javascript
Introduction.html webdev.css

1
2
3
var Paragraphs; var LineBreak;
4 {
5
6
7
<p>Insert paragraph</p>
8 <br></br>
9
10
11
12
13
14 }
Javascript
Introduction.html webdev.css

1
2 var Headings;
3
4 {
5 <h1></h1>
6
7 <h2></h2>
8
<h3></h3>
9
10 <h4></h4>
11
<h5></h5>
12
13 <h6></h6>
14 }
Javascript
Introduction.html webdev.css

1 var Text Formatting


2
3 <b>Bold text</b>
4 <strong>strong emphasize text same as bold</strong>
5
6
<i>Italic</i>
7 <em>Extra importance italic</em>
8
<small>Small size compared to other text</small>
9
10 <del>Delete tag</del>
11 <mark>Mark tag, highlight text</mark>
12
<sub>subscripted text</sub>
13
14 <sup>superscripted text</sup>

Javascript

You might also like