Uploaded by Harini Murali

ICT Practicals: Excel Charts & Web Authoring

advertisement
ICT Practicals P3
EXCEL
-> Chart: Make a horizontal table so that its easy to compare
-> Line graph is alway recommended for the chart.
WEB AUTHORING:
h1,h2,h3,p{
font-family: Calibri,"Helvetica Neue", sans-serif ---> #Display Calibri. If not available then Helvetica. Neither available then display default sans-serif
<head>
<title> Title name </title>
Attributes
- charset: to set the character encoding to something
- content: - name:
Most common charset are 'UTF-8' for unicode and 'ISO-8859-1' for Latin
<meta charset = "ISO-8859-1"
name: author, description, keywords, viewports (sub-attributes)
each of these attributes are always followed by content attribute
E.g.
Author is Edubbey
<meta name = "author", content ="Edubbey">
<meta name = "description", content = "I love ICT" >
<meta name = "keywords", content = "ICT" >
E.g.
<head>
<title> Weather Data </title>
h1,h2,h3,p{
font-family: Calibri,"Helvetica Neue", sans-serif ---> #Display Calibri. If not available then Helvetica. Neither available then display default sans-serif
<meta charset = "ISO-8859-1">
<meta name = "author" content = "TawaraWeb Harini">
<meta name = "description" content = "Weather data for the Tawara region">
<meta name = "viewport" content = "width=device-width, initital scale=2.0">
<meta name = "keyword" content= "weather, tawara">
<base target = "_blank">
</head>
Download