0% found this document useful (0 votes)
3 views3 pages

HTML MSWord Excel Assignment Guide

The document provides a step-by-step guide for completing five different tasks using HTML, MS Word, and MS Excel. Tasks include creating an HTML table with student records, a web page with images, an essay competition poster, a time table, and an attendance database. Each task outlines specific steps to follow for successful completion.

Uploaded by

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

HTML MSWord Excel Assignment Guide

The document provides a step-by-step guide for completing five different tasks using HTML, MS Word, and MS Excel. Tasks include creating an HTML table with student records, a web page with images, an essay competition poster, a time table, and an attendance database. Each task outlines specific steps to follow for successful completion.

Uploaded by

Error Error
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Complete Assignment Guide (Step by Step)

Task 1: Create HTML Table (5 Records)

Step 1: Open Notepad.


Step 2: Copy the below code.
Step 3: Click File > Save As.
Step 4: File name: [Link]
Step 5: Save as type: All Files.
Step 6: Click Save.
Step 7: Double click [Link] to run in browser.

<!DOCTYPE html>
<html>
<head>
<title>Student Table</title>
</head>
<body>

<h2>Student Record</h2>

<table border="1">
<tr>
<th>Name</th>
<th>Roll No</th>
<th>Marks1</th>
<th>Marks2</th>
</tr>

<tr><td>Rahul</td><td>101</td><td>78</td><td>85</td></tr>
<tr><td>Aman</td><td>102</td><td>67</td><td>74</td></tr>
<tr><td>Vikas</td><td>103</td><td>88</td><td>90</td></tr>
<tr><td>Rohit</td><td>104</td><td>72</td><td>69</td></tr>
<tr><td>Sahil</td><td>105</td><td>81</td><td>77</td></tr>

</table>

</body>
</html>

Task 2: Create Web Page with 3 Images

Step 1: Open Notepad.


Step 2: Copy the below code.
Step 3: Save file as [Link]
Step 4: Keep 3 images in same folder ([Link], [Link], [Link]).
Step 5: Double click [Link] to run.

<!DOCTYPE html>
<html>
<head>
<title>My Web Page</title>
</head>
<body>

<h1>Welcome to My Web Page</h1>

<img src="[Link]" width="200"><br><br>


<img src="[Link]" width="200"><br><br>
<img src="[Link]" width="200">

</body>
</html>

Task 3: Essay Competition Poster (MS Word)

Step 1: Open MS Word.


Step 2: Click Insert > Shapes > Rectangle.
Step 3: Write Title: Essay Competition 2026.
Step 4: Add details:
Topic: Role of Technology in Education
Date: 10 March 2026
Time: 10 AM
Venue: School Auditorium
Classes: 9 to 12
Step 5: Add border and color.
Step 6: Save and Print.

Task 4: Time Table (MS Word)

Step 1: Open MS Word.


Step 2: Click Insert > Table.
Step 3: Select 5 rows and 5 columns.
Step 4: Fill details like Monday to Friday and subject names.
Step 5: Add border.
Step 6: Save and Print.

Task 5: Attendance Database (MS Excel)

Step 1: Open MS Excel.


Step 2: Create columns:
[Link], Roll No, Reg No, Name, January, February, March, Total, Percentage.
Step 3: Enter 20 student records.
Step 4: In Total column write formula:
=SUM(E2:G2)
Step 5: In Percentage column write formula:
=(H2/75)*100
Step 6: Drag formula for all students.
Step 7: Save and Print.

You might also like