Posts

Showing posts with the label HTML

SOME COMPUTER QUESTIONS

Hello Everyone, If you have VIVA in school, College, other Paper. So I've some questions for viva.  Click below for the questions.      →    SOME COMPUTER QUESTIONS If you have any doubts mention in the Comment Box. Please follow my Blog, Share and Comment. THANK YOU

Image Tag

Image
Hello Friends...!!   This is HTML Coding Practical: -   Image Tag  Script   Script: - <html> <head><title>Image</title> </head> <body> <img src="C:\Users\Public\Pictures\Sample Pictures\jellyfish.jpg" height="150" width="150"> </body> </html> Output: -   If you have any doubts mention in the Comment Box.

Marquee with Attributes-2 Tag

Image
Hello Friends...!!   This is HTML Coding Practical: - Marquee Tag with Attributes-2 Script     Script: - <html> <head> <title> MARQUEE WITH ATTRIBUTES-2 </title> </head> <body> <font size=”40"> <marquee direction = “up” height=”100%” scrollamount = “40%” loop=”-1"> THE E LEARNER </marquee> </font> </body> </html> Output: - If you have any doubts mention in the Comment Box.   Please follow the my Blog, Share and Comment

Marquee with Attributes-1 Tag

Image
Hello Friends...!!   This is HTML Coding Practical: - Marquee Tag with Attributes-1 Script     Script: - <html> <head> <title> MARQUEE WITH ATTRIBUTES-1 </title> </head> <body> <font size=”25" color=”blue”> <marquee behavior=”scroll” direction =“right” scrollamount=”40"> THE E LEARNER </marquee> </font> </body> </html> Output: -   If you have any doubts mention in the Comment Box. Please follow the my Blog, Share and Comment

Hyperlink Tag

Image
Hello Friends...!!   This is HTML Coding Practical: -  Hyperlink Tag Script     Script: - <html> <head> <title> Hyperlink </title> </head> <body> <!— link to Home page of The E Learner website —> <a href="https://theourelearner.blogspot.com/"> Visit to The E Learner website </a>   </body> </html> Output: - If you have any doubts mention in the Comment Box.   Please follow the my Blog, Share and Comment  

Marquee Tag

Image
Hello Friends...!!   This is HTML Coding Practical: - Marquee Tag Script     Script: - <html> <head> <title>MARQUEE TAG</title> </head> <body> <h1> <font type=”broadway”> <marquee> THE E LEARNER </marquee> </h1> </font> </body> </html> Output: - If you have any doubts mention in the Comment Box. Please follow the my Blog, Share and Comment

Table with Background and Border Color Tag

Image
Hello Friends...!!   This is HTML Coding Practical: - Table with Background and Border Color Tag Script     Script: - <html> <head> <title> Table 2 </title> </head> <body> <h1> Trade: COPA </h1> <h2> Practical Mark List </h2> <table border=”5" bordercolor=”green” bgcolor=”orange” width=”50%”>   <tr> <td>1</td> <td>AMBIKA.S</td> <td>98<td> </tr>   <tr> <td>2</td> <td>VIJI.K</td> <td>98</td></tr>   <tr> <td>3</td> <td>ANU.D</td> <td>97</td></tr>   <tr> <td>4</td> <td>MAMTA.B</td> <td>96</td> </tr>   <tr> <td>5</td> <td>JORONA.S</td> <td>95</td> </tr> </table> </body> </html> Output...

HTML Some Coding

Image
  Hello Friends, Their Some HTML Coding Click on the title of script: Text Formatting Script Table Tag Table with Background and Border Color Tag Nested List Tag Description List Tag Unordered List Tag Ordered Tag List Hyperlink Tag Marquee Tag Marquee with Attributes-1 Tag Marquee with Attributes-2 Tag Image Tag If you have any doubts mention in the Comment Box.   Please follow my Blog, Share and Comment

Table Tag

Image
Hello Friends...!!  This is HTML Coding Practical: - Table Tag Script   Script: - <html> <head> <title> Table 1 </title> </head> <body> <b> Particulars of Government ITI (Women) </b> <br> <br> <table border=”5" cellpadding=”5" cellspacing=”10">   <tr>   <th>SNO</th>   <th>NAME OF THE TRAINEE</th>   <th>TRADE</th>   <th>SEMESTER</th>   </tr>   <tr>   <td>1.</td>   <td>ANITHA.C</td>   <td>COPA</td>   <td>II</td>   </tr>   <tr>   <td>2.</td>   <td>VENI.T</td>   <td>IT</td>   <td>II</td>   </tr>   <tr>   <td>3.</td>   <td>PRIYA.S</td> ...

Ordered List Tag

Image
  Hello Friends...!!  This is HTML Coding Practical: -  Ordered List Tag Script   Script: - <html> <head> <title> Ordered list </title> </head> <body> <b><u> PROTOCOLS </u></b> <ol type = “1”> <li> FTP </li> <li> HTTP </li> <li> SMTP </li> <li> TCP/IP </li> <li> UDP </li> </ol> </body> </html> Output: -   If you have any doubts mention in the Comment Box.   Please follow my Blog, Share and Comment    

Unordered List Tag

Image
  Hello Friends...!!  This is HTML Coding Practical: - Uno rdered List Tag Script   Script: - <html> <head> <title> unordered list </title> </head> <body> <b><u> Cables used for networking </u></b> <ul type = "square"> <li> Shielded twisted pair cable </li> <li> Unshielded twisted pair cable </li> <li> Fiber optic cable </li> </ul> </body> </html> Output: -   If you have any doubts mention in the Comment Box. Please follow my Blog, Share and Comment

Description List Tag

Image
  Hello Friends...!!  This is HTML Coding Practical: -  Description List Tag Script   Script: - <html> <head> <title> Description List </title> </head> <body> <b><u> MS OFFICE </u></b> <dl> <dt>MSWORD</dt> <dd>- Microsoft Word or MS-WORD (often called Word) is a graphical word processing program that users can type with. It is made by the computer company Microsoft. Its purpose is to allow users to type and save documents. Similar to other word processors, it has helpful tools to make documents.<dd> <dt>MSEXCEL</dt> <dd>- Microsoft Excel is a spreadsheet developed by Microsoft for Windows, macOS, Android and iOS. It features calculation, graphing tools, pivot tables, and a macro programming language called Visual Basic for Applications. </dd> <dt>MSACCESS</dt> <dd>- Microsoft Access is a database management system (DBMS) from Mic...

Nested List Tag

Image
  Hello Friends...!! This is HTML Coding Practical: -  Nested List Tag Script Script: - <html> <head> <title> Nested List </title> </head> <body> <b><u> MS OFFICE </u></b> <ul>  <li>INPUT DEVICES  <ul>  <li>KEYBOARD</li>  <li>MOUSE</li>  <li>SCANNER</li>  </ul>  <li>OUTPUT DEVICES  <ul>  <li>PRINTER</li>  <li>PLOTTER</li>  <li>MONITOR</li>  </ul>  <li>MEMORY DEVICES</li> </ul> </body> </html> Output: -   If you have any doubts mention in the Comment Box.   Please follow my Blog, Share and Comment.