In this article we provide information regarding latest Navodaya Class 10 Computer Notes – September Month TGT Computer Science (CS) 2025-26.
Navodaya Class 10 Computer Notes – September Month
We are using source for Syllabus – Navodaya Vidyalaya Samiti Perspective Academic Planning Split of Syllabus 2025-26.
We are giving to the Point Notes for the Students.
Thanks Me Later
For the September Month Notes – Class 10 Computer Subject
Unites we covered in Notes
Unit 2: HTML: (continued….)
- Font tags (attributes: face, size, color).
- Insert images: img (attributes: src, width, height, alt), sup (super script), sub (subscript).
- HTML Forms: Textbox, radio buttons, checkbox, password, list, combobox.
- Embed audio and video in a HTML page
What is HTML ?
- HTML stands for HyperText Markup Language.
- It is the standard language used to create webpages.
- HTML is not a programming language, it is a markup language (it uses tags to “mark up” text, images, links, etc. for the web browser).
1) Font Tags
<font face="Arial" size="4" color="blue"> This is text </font>
- face → font style (e.g., Arial, Verdana).
- size → font size (1 to 7).
- color → text colour (red, blue, green or hex code).
2) Insert Images
<img src="photo.jpg" width="200" height="150" alt="My Photo">
src → location or path of the image file.
width → width of the image in pixels.
height → height of the image in pixels.
alt → alternative text if image is not shown.
3) Superscript and Subscript
<sup>
→ Superscript text. Example: X2<sub>
→ Subscript text. Example: H2O
4) HTML Forms
Forms are used to collect information from users.
Textbox → <input type="text">
Password Box → <input type="password">
Radio Button → <input type="radio" name="gender"> Male
Checkbox → <input type="checkbox"> I Agree
Dropdown List (List/Combobox) →<select> <option>Option 1</option> <option>Option 2</option> </select>
5) Embed Audio and Video
Audio →<audio controls> <source src="song.mp3" type="audio/mpeg"> </audio>
Video →<video width="320" height="240" controls> <source src="movie.mp4" type="video/mp4"> </video>
Thanks to Beloved Readers.