HTML and Excel
HTML and Excel
ICT(0417)
By Anushka Prakash
Objects:
o Insert images: <img src="image.jpg" alt="Description" width="300"
height="200">
o Insert audio: <audio controls><source src="audio.mp3"
type="audio/mpeg"></audio>
o Insert video: <video controls width="400"><source src="video.mp4"
type="video/mp4"></video>
Div & Text Styling:
o Use <div> to group elements and apply CSS classes.
o background-image: url("background.jpg");
Font Styling:
o font-family: Arial, sans-serif;
o font-size: 16px;
o color: #333;
o text-align: center;
o font-weight: bold;
o font-style: italic;
Table Styling:
o table { border-collapse: collapse; width: 100%; }
Lists
Ordered List: <ol><li>Item 1</li><li>Item 2</li></ol>
Unordered List: <ul><li>Item 1</li><li>Item 2</li></ul>
Styling: ul { list-style-type: square; }
Adding Comments in CSS
Use /* Comment here */ to explain sections of CSS.
Saving Styles
Save as style.css with proper formatting.
Ensure correct hierarchy of CSS rules for proper application.
Basic Functions:
o SUM(range), AVERAGE(range), MAX(range), MIN(range).
o ROUND(value, decimals), INT(value), COUNT(range).
Lookup Functions:
o LOOKUP(value, range), VLOOKUP(value, table, col_index, false).
o HLOOKUP(value, table, row_index, false), XLOOKUP(value,
lookup_array, return_array).
Conditional Logic:
o IF(condition, value_if_true, value_if_false).
o Nested functions for complex operations.
Presenting Data