100% found this document useful (1 vote)
83 views

Web Server

The <form> tag is used to create HTML forms for user input. It can contain elements like <input>, <textarea>, <button>, <select>, and <option> to collect user data through text fields, text areas, buttons, dropdowns and other form controls. The <form> tag defines an HTML form, where the form data is submitted to a server for processing.

Uploaded by

Srishti Shrestha
Copyright
© © All Rights Reserved
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
83 views

Web Server

The <form> tag is used to create HTML forms for user input. It can contain elements like <input>, <textarea>, <button>, <select>, and <option> to collect user data through text fields, text areas, buttons, dropdowns and other form controls. The <form> tag defines an HTML form, where the form data is submitted to a server for processing.

Uploaded by

Srishti Shrestha
Copyright
© © All Rights Reserved
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 4

Web Server

Web Pages are created using HTML, DHTML, XML, and other web scripting languages.
These pages must be stored at a central Computer. Computers, which stores web
pages in the form of directories and files and provides these files to be read are called
“Servers”. They act like service providers that service the need for information.
The Server Computer run very special software are called “Web Server” Software that
allows them to :
Web site Management
Respond to client request by providing the pages with the required information
Accepts data from clients
Some Popular software which server rum to allow them to respond to client request for
information are Internet Information Server(IIS), Apache Web Server, Microsoft
Personal Web Server
Apache Web Server
Apache Web Server is a open source public domain web server. It was developed in
1995 based on NCSA httpd web server. Different versions of Apache Web Servers are
available in market and original Apache Web Server was written for UNIX OS.
Internet Information Services
PWS
Microsoft Personal Web Server

वेब सर्भर
वेबपष्ृ ठहरू एचटीएमएल, DHTML, XML, र अन्य वेब लिपि भाषाहरू प्रयोग गरी सिर्जना गरिन्छन ्।
यी पष्ृ ठहरू केन्द्रीय कम्प्युटरमा भण्डारण हुनुपर्छ। कम्प्यूटर, जस्ले डाइरे क्टरी र फाईलहरूको वेबपेजको रूपमा स्टोर
गर्नुका साथै ति फाईलहरू ब्रराउजरलाई पढ्न अनुमति दिने कम्प्यूटरलाई वेब सर्भर भन्निछ । वेब सर्भरले सेवा प्रदायकहरू जस्तै
सेवाका बारेमा जानकारी दिने गर्दछ। वेब सर्भर, एक विशेष किसिमको सफ्टवेयर हो वेब सर्भर सफ्टवेयर निम्न कार्यहरू गर्न
अनुमति दिन्छ:
1) वेब साइटको व्यवस्थापन
2) आवश्यक जानकारीको साथ वेबपष्ृ ठहरू प्रदान गरे र ग्राहक अनुरोधको जवाफ दिन
3) ग्राहकहरु लाई डेटा स्वीकार गर्नु
केहि लोकप्रिय सफ्टवेयर जुन सर्भरले तिनीहरूलाई क्लाइन्ट अनुरोधमा प्रतिक्रिया दिन अनुमति दिन्छन, ति हुन:
Internet Information Server (IIS) इन्टरनेट इन्फोर्मेशन सर्भर, Apache वेब सर्भर, XAMP and WAMP वेब
सर्भर इत्यादी।

a) The default HTML page is delivered to a client connected to a Web server is


………………………….
b) The protocol used to setup communication between a client and server on
the internet is………
c) ……………… is the protocol used by the WWW service to establish a
communication between a web server and a web browser
d) A permanent connection to the internet is obtained by the ISP through
its………………..
e) Server runs special software call ____________ ________________
_____________ that allows them to respond to a client’s request for
information.
f) HTML stands for ______________________
g) An HTML document is divided into _____________________________ and
_________________ sections
h) The tag that is used to supply the title of the web pages is
___________________________
i) ______________ attributes is used to set GIF file in the body tag.
j) Give the name of any two Web Browsers and Web Servers
Ans of
d) Gateway
e) Web Server Software

1.What does CSS stand for?


Creative Style Sheets
Colorful Style Sheets
Cascading Style Sheets
Computer Style Sheets
2. What is the correct HTML for
referring to an external style sheet?
<style src="mystyle.css">
<stylesheet>mystyle.css</stylesheet>
<link rel="stylesheet" type="text/css"
href="mystyle.css">
3. Where in an HTML document is the
correct place to refer to an external
style sheet?
At the end of the document
At the top of the document
In the <body> section
In the <head> section
4. Which HTML tag is used to define an
internal style sheet?
<script>
<css>
<style>
5. Which HTML attribute is used to
define inline styles?
style
styles
font
class
6. Which is the correct CSS syntax?
{body:color=black(body}
body:color=black
body {color: black}
{body;color:black}
7. How do you insert a comment in a
CSS file?
' this is a comment
// this is a comment //
/* this is a comment */
// this is a comment
8. Which property is used to change the background color?
background-color:
bgcolor:
color:
9. How do you add a background color
for all <h1> elements?
h1.all {background-color:#FFFFFF}
all.h1 {background-color:#FFFFFF}
h1 {background-color:#FFFFFF}
10. How do you change the text color of
an element?
text-color:
color:
fgcolor:
text-color=
11. Which CSS property controls the text
size?
font-style
text-style
font-size
text-size
12.What is the correct CSS syntax for
making all the <p> elements bold?
p {text-size:bold}
<p style="font-size:bold">
<p style="text-size:bold">
p {font-weight:bold}
13. How do you display hyperlinks
without an underline?
a {decoration:no underline}
a {underline:none}
a {text-decoration:no underline}
a {text-decoration:none}
14. How do you make each word in a text
start with a capital letter?
You can't do that with CSS
text-transform:capitalize
text-transform:uppercase
15. How do you change the font of an
element?
font=
font-family:
f:
16. How do you make the text bold?
font:b
font-weight:bold
style:bold
17. How do you display a border like this:
The top border = 10 pixels
The bottom border = 5 pixels
Definition and Usage

The <form> tag is used to create an HTML form for user input.

The <form> element can contain one or more of the following form elements:

<input>
<textarea>
<button>
<select>
<option>
<optgroup>
<fieldset>
<label>

परिभाषा र उपयोग

प्रयोगकर्ता इनपुटको लागि HTML फारम सिर्जना गर्न <form> ट्याग प्रयोग गरिन्छ।

<फारम> तत्वले निम्न फारम तत्वहरू मध्ये एक वा बढी समावेश गर्न सक्दछ:

    <input>
    <textarea>
    <बटन>
    <चयन>
    <option>
    <optgroup>
    <fieldset>
    <लेबल>

You might also like