4 Program to demonstrate SPAN tag in HTML

A <span> element which is used to color a part of a text: Program: <!DOCTYPE html> <html lang="en"> <h...
Read More

3 Program to demonstrate DIV tag in HTML

Definition : The <div> tag defines a division or a section in an HTML document. The <div> tag is used as a container for HTML...
Read More

2 Program to demonstrate Paragraph in HTML

Program: <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <title...
Read More

1 Program to demonstrate HTML Headings

Program: <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <title...
Read More

29 Program to divide two 16 bit signed number in 8086 microprocessor

Code: ; Program to add two 16 bit unsigned number .MODEL SMALL .STACK 100 .DATA      REM DW ?      QUO DW ? .CODE      MO...
Read More