Posts

Lab 9 : Fundamentals of web technology

Image
 Example 1: Example 2:     1. The <style> tag is used to define style information (CSS) for a document.        The  rel attribute  defines the relationship between a  linked  resource and the current document.          The <link>  tag defines the relationship between the current document and an external resource.     2. The difference between Example 1 and Example 2 is that the background of example 1 is powder blue color and white for example 2. Besides, the color of the font for example 1 has red and blue while for example 2 is black only.

Lab 8 : Fundamentals of web technology

Image
      1. The <dl> tag defines a description list.          The <dt> tag defines a term/name in a description list.         The <dd> tag is used to describe a term/name in a description list.          The <div> tag defines a division or a section in an HTML document.     2.                       <!DOCTYPE html> <html> <body> <div style="background-color:lightblue"> <h3> Q2- LAB-08 </h3> <p>--------------------------------------.</p> </div> <div style="background-color:yellow"> <dl> <dt>Coffee</dt> <dd>Black hot drink</dd> <div style="background color:lightgreen"> <dt>Milk</dt> <dd>White cold drink</dd> </div> </dl> </body> </html> ...

Lab 7 : Fundamentals of web technology

Image
  1.   The <input type = "radio">  defines a radio button.  In most cases, radio buttons are provided in radio groups. In a group, only one radio button can be selected at a time.      The <input type = "checkbox">  defines a checkbox.  When active, the checkbox appears as a square box that is ticked (checked). Checkboxes allow a user to select one or more alternatives from a limited set of alternatives. 2.  <!DOCTYPE html> <html> <body> <h2> LAB-07 21-4-2020 </h2> <h3> Exercise </h3><br> <b><form>   <input type="checkbox" id="car" name="v1" value="car">   <label for="car">Car</label><br>   <input type="radio" id="Black" name="color" value="black">   <label for="black">Black</label>   <input type="radio" id="White" name="color...

Lab 6 : Fundamentals of web technology

Image
1. <!DOCTYPE html> -  Defines the document type.     <h2> - Defines HTML headings.     <br> - Defines single line break.     <label> - Defines a label for an <input> element.     <p> - Defines a paragraph.     <form> - Defines an HTML form for user input. 2. <!DOCTYPE html>      <html>      <body>      <h2>LAB-06 HTML Forms</h2>      <form action="/action_page.php">      <label for="fname">First name:</label><br>      <input type="text" id="fname" name="fname" value="">      <label for="lname">Last name:</label>      <input type="text" id="lname" name="lname" value=" "><br><br>      <label for="id">ID:</label>      <input type="text" id="id...

Lab TCP-IP : Fundamentals of web technology

Image
 

Lab 4: Fundamentals of web technology

Image
 

Lab 3: Fundamentals of web technology

Image