0% found this document useful (0 votes)
64 views10 pages

Internet and Web Technology

Uploaded by

anshurajpoot167
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
64 views10 pages

Internet and Web Technology

Uploaded by

anshurajpoot167
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 10

MADHAV INSTITUTE OF TECHNOLOGY & SCIENCE

LAB EVALUATION
INTERNET & WEB TECHNOLOGY LAB(28241107)

SUBMITTED TO
DR.ARUN KUMAR
PROF.(DEPT OF CENTER OF AI)
DR.HARDEV SINGH PAL
ASSISTANT PROF.(DEPT OF CENTER OF AI)
1) Design a simple HTML document with a proper structure,
including DOCTYPE declaration, html, head, and body
elements.
Code :-
<!DOCTYPE html>
<html>
<head>
<title> Introduction </title>
</head>
<body>
<h3><b> Introducing Myself</b> </h3>
<p> My name is Amber Choubey </p>
<p> I am graduating Btech (AIML) from MITS Gwalior </p>
<p> I want to become software Engineer </p>
<p> My hometown is Damoh. </p>
<p> Currently, I live in Gwalior.</p>
<p> I passed Class 12th with 84% from MVM Damoh</p>
<p> I passed 10th class with 86% from MVM Damoh</p>
<p> I like to travel </p>

</body>
</html>

2
2) Apply text formatting tags to enhance the appearance of text in an
HTML document.
Code :-
<html>
<head>
<title> use of formatting tags</title>
</head>
<body>

<b><h2> Basic Knowledge </h2></b>

<i><b> chemistry </b> </i><br><br>


<u><font color=”pink”>
3
Water formula </font></u><br>
<p>
H<sub>2</sub>O </i></p>

<i><b> maths </b> </i><br><br>


<font color=”blue”>

<u> basic identities </u></font>

<p><i> a<sup>2</sup> + b<sup>2</sup> + 2ab = (a+b) <sup>2</sup> </i>


</p>
<i><b> physics</b> </i>
<br><br>
<font color=”red”>
<u>equation of motion</u></font> <br><br>
<i> v= u+at </i><br>
<i> s=ut+ 1/2at <sup>2</sup></i><br>
<i> v<sup>2</sup> = u<sup>2</sup>+2as </i>
</body>
</html>

4
3) .Design a form in HTML that includes different input types, such
as text, email, password, radio buttons, checkboxes, and a submit
button.
Code :-
<html>
<head>
<title> Form </title>
</head>
<body>
<h1> Information of Student </h1>
<form>
<label> Name</label>
<input type = “text” placeholder =”Enter Name “ >
<br><br>
<label> Branch : </label>
<input type = “text” placeholder =”Enter Branch” >
<br><br>
<label> Enrollment Number : </label>
<input type = “text” placeholder =”Enter Enrollment Number” >
<br><br>
<label for=”x”> Email : </label>
<input type = “email” placeholder =”Enter email id” id=”x” >
<br><br>
<label for=”o”> Password : </label>
<input type = “password” placeholder =”Enter your password” id=”o” >
<br><br>
<label for=”y”> Phone Number : </label>
<input type = “alphnum” placeholder =”Number” id=”y” name=”phone
number” >
<br>
<br>
<label for=”g”> Upload image :</label>

5
<input type = “file” placeholder =”uplode image” id=”g” >
<br>
<br>
<label for=”language”> Select your programming language </label>
<select id=”language”>
<option> C++ </option>
<option> Java </option>
<option> Html </option>
<option> Python </option>
<option> Javascript </option>
</select>
<br>
<br>
<label for=”subject”> Choose your favourite subject </label><br>
<input type = “radio” id=”a” name=”subject” >
<label for = “a”> Internet and Web Technology</label> <br>
<input type = “radio” id=”b” name=”subject” value=”Problem and
programming” >
<label for=”b”> Problem and programming </label> <br>
<input type = “radio” id=”c” name=”subject”>
<label for=”c”> Liner Algebra</label>
<br>
<br>
<input type =”checkbox” >
<label> Accept terms and condtions </label>
<br>
<br>
<button> submit </button>
</form>
</body>
</html>

6
4) Create a web page that includes both ordered and unordered lists,
as well as a formatted table..
Code :-

7
<html>
<head>

<title> List and Table </title>


</head>
<body>
<h2> List of favourite movies </h2>
<p><ul><li>Bollywood <ol><li> 3 Idiots
</li>
<li>Hera pheri</li>
<li>Tamasha</li>
<li>Swades</li>
</ol>
</li>
<li>Tollywood <ol><li>
</li>
<li>RRR</li>
<li>Salaar</li>
<li>KGF</li>
<li>Kalki</li></ol>
</li></li>
<li>In Hollywood<ol>
<li> Interseller
</li>
<li>Pirates of Caribbean</li>
<li>Avatar</li>
</ol>
</li>
</ul></p>
<p>
<h2> Best places in Gwalior </h2>
<ol>
<li>Jai Vilas palace</li>
<li>Gwalior fort</li>
<li>Surya mandir</li>
<li>Tansen fort</li>
<li> Phoolbagh </li>
<li>Italian garden</li>
<li>Gurudwara</li> </ol>
</p>
<h3>Definition of html</h3>
<dl>
<dt>Html :-</dt>

8
<dd>HTML stands for HyperText Markup Language. It is the standard
language used to create and structure content on the web. It tells the web
browser how to display text, links, images, and other forms of multimedia
on a webpage. </dd>
</dl>
<center><table>
<table style=” border=”1” cellpadding=”5”>
<caption>Table </caption>
<tr>
<th>SrNo.</th>
<th>Name of Cities </th>
<th>Located in State </th>
</tr>
<tr>
<td>1.</td>
<td> Mumbai </td>
<td>Maharashtra</td>
</tr>
<tr>
<td>2.</td>
<td> Bengaluru</td>
<td>Karnataka</td>
</tr>
<tr>
<td>3.</td>
<td>Surat </td>
<td>Gujarat</td>
</tr>
<tr>
<td>4.</td>
<td> Indore </td>
<td>Madhya Pradesh</td>
</tr>
</table></center>
</body>
</html>

9
10

You might also like