Computer Science, asked by Anki132, 3 months ago

how to write html coding in A4 sheet
pls give the correct answer ​

Attachments:

Answers

Answered by nishasharma50
2

Follow the steps below to create your first web page with Notepad or TextEdit.

Step 1: Open Notepad (PC) Windows 8 or later: ...

Step 1: Open TextEdit (Mac) Open Finder > Applications > TextEdit. ...

Step 2: Write Some HTML. ...

Step 3: Save the HTML Page. ...

Step 4: View the HTML Page in Your Browser.

Answered by anindyaadhikari13
16

Answer:

This is the required HTML coding for the question.

<!DOCTYPE html>

<html>

  <head>

     <title>

        My First Website.

     </title>

     <meta charset="UTF-8"/>

  </head>

  <body bgcolor="yellow">

     <font color="red">

        <h1 align="center">

           MINHAS TRAVEL AGENCY

        </h1>

     </font>

     <br/>

     <hr width="50%"style="height:8px;" color="blue"/>

     <h2>

        Customer Information Form

     </h2>

     <p>

        <b>

        Please provide the following information so we can help you with your travel needs.

        </b>

     </p>

     <form>

        Your name: <input type="text" name="user_name"/>

        <br/><br/>

        Address: <input type="text" name="address" size="50"/>

        <br/><br/>

        Mobile: <input type="text" name="ph_number" size="10"/>

        <br/><br/>

        Comment:<br/>

        <textarea rows="5" cols="60"></textarea>

        <br/><br/>

        Service: <input type="checkbox" name="service" checked/>Flight

        <input type="checkbox" name="service"/> Hotel

        <input type="checkbox" name="service"/>Car

        <br/><br/>

        Returning Customer: <input type="radio" name="customer" value="yes"/>Yes

        <input type="radio" name="customer" value="no"/>No

        <input type="radio" name="customer" value="maybe"/>May be

        <br/><br/>

        Continent:

        <select name="continent">

           <option value="Australia">Australia</option>

           <option value="Europe">Europe</option>

           <option value="North America">North America</option>

        </select>

        <br/><br/>

        <input type="submit" name="submit" value="SUBMIT"/>

        <input type="reset" name="reset" value="RESET"/>

   </form>

  </body>

</html>

I have attached the html cờde in a txt file. You can check it out from there. See the attachment for output.

Attachments:
Similar questions