html body { margin-top: 50px !important; } #top_form { position: fixed; top:0; left:0; width: 100%; margin:0; z-index: 2100000000; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -o-user-select: none; border-bottom:1px solid #151515; background:#FFC8C8; height:45px; line-height:45px; } #top_form input[name=url] { width: 550px; height: 20px; padding: 5px; font: 13px "Helvetica Neue",Helvetica,Arial,sans-serif; border: 0px none; background: none repeat scroll 0% 0% #FFF; }
tags. Program 2 shows the tag for changing text properties. Later programs illustrate headings, comments, text formatting, lists, images, and hyperlinks using tags such as, ,,
,
, , and . The output section is blank, suggesting the programs are examples rather than fully functional pages.">
0 ratings0% found this document useful (0 votes)59 views
Program 1
Uploaded by
agoyal5145The document contains examples of various HTML tags for formatting text and adding images and links. Program 1 demonstrates the <body> and <pre> tags. Program 2 shows the <font> tag for changing text properties. Later programs illustrate headings, comments, text formatting, lists, images, and hyperlinks using tags such as <h1-6>, <div>, <p>, <ol>, <ul>, <img>, and <a>. The output section is blank, suggesting the programs are examples rather than fully functional pages.Copyright:
© All Rights ReservedAvailable Formats
Download as PDF, TXT or read online from Scribd
Program 1
Uploaded by
agoyal51450 ratings0% found this document useful (0 votes)59 views26 pagesThe document contains examples of various HTML tags for formatting text and adding images and links. Program 1 demonstrates the <body> and <pre> tags. Program 2 shows the <font> tag for changing text properties. Later programs illustrate headings, comments, text formatting, lists, images, and hyperlinks using tags such as <h1-6>, <div>, <p>, <ol>, <ul>, <img>, and <a>. The output section is blank, suggesting the programs are examples rather than fully functional pages.Original Description:
web technologies recordOriginal Title
1Copyright
© © All Rights ReservedAvailable Formats
PDF, TXT or read online from ScribdShare this document
Did you find this document useful?
Is this content inappropriate?
The document contains examples of various HTML tags for formatting text and adding images and links. Program 1 demonstrates the <body> and <pre> tags. Program 2 shows the <font> tag for changing text properties. Later programs illustrate headings, comments, text formatting, lists, images, and hyperlinks using tags such as <h1-6>, <div>, <p>, <ol>, <ul>, <img>, and <a>. The output section is blank, suggesting the programs are examples rather than fully functional pages.Copyright:
© All Rights ReservedAvailable Formats
Download as PDF, TXT or read online from Scribd Download as pdf or txt 0 ratings0% found this document useful (0 votes)59 views26 pages
Program 1
Uploaded by
agoyal5145The document contains examples of various HTML tags for formatting text and adding images and links. Program 1 demonstrates the <body> and <pre> tags. Program 2 shows the <font> tag for changing text properties. Later programs illustrate headings, comments, text formatting, lists, images, and hyperlinks using tags such as <h1-6>, <div>, <p>, <ol>, <ul>, <img>, and <a>. The output section is blank, suggesting the programs are examples rather than fully functional pages.Copyright:
© All Rights ReservedAvailable Formats
Download as PDF, TXT or read online from ScribdDownload as pdf or txtYou are on page 1of 26Part A Web Design Lab HTML
PROGRAM 1
<!-- A Program to illustrate body and pre tags -->
<html>
<head>
<title> body and pre tag </title>
</head>
<body text="red" bgcolor="yellow" background="Desert.jpg">
This is an Illustration of body tag with its properties
<pre>
This text uses
pre tag and preserves
nextline and spaces </pre>This text doesnt uses
pre tag so doesnt preserves
nextline and spaces.. everything
will be printed in the same line
</body>
</html>
OUTPUTDept. Of CS & IS, Govt. Polytechnic, Gulbarga 2
Part A Web Design Lab HTMLPROGRAM 2
<!-- A Program to illustrate text Font tag -->
<html>
<title> Font tag Example </title>
<body>
<font face="arial" size="1" color="blue"> WELCOME </font> <br>
<font size="2" color="cyan"> WELCOME </font> <br>
<font size="3" color="red"> WELCOME </font> <br>
<font size="4" color="yellow"> WELCOME </font> <br>
<font size="5" color="green"> WELCOME </font> <br>
<font size="6" color="brown"> WELCOME </font> <br>
<font size="7" color="pink"> WELCOME </font> <br>
<font size="20" color="gray"> WELCOME </font> <br>
</body>
</html>
OUTPUTDept. Of CS & IS, Govt. Polytechnic, Gulbarga 3
Part A Web Design Lab HTMLPROGRAM 3
<!-- A Program to illustrate comment,h1….h6, and div tag -->
<html>
<head>
<title> Illustrating comment, h1...h6 and div tags </title>
</head>
<body><!-- THIS IS A COMMENT LINE -->
<div style="color:#00ff00">
<h1 align="center"> This is h1 tag text with center aligned </h1>
<h2 align="left"> This is h2 tag text with left aligned </h2>
<h3 align="right">This is h3 tag text with right aligned </h3>
</div><h4> This is h4 tag text without alignment</h4>
<h5> This is h5 tag Text without alignment </h5>
<h6> This is h6 tag text without alignment </h6></body>
</html>
OUTPUTDept. Of CS & IS, Govt. Polytechnic, Gulbarga 4
Part A Web Design Lab HTMLPROGRAM 4
<!-- A Program to illustrate text formatting tags -->
<html>
<head>
<title> Text Tags </title>
</head>
<body>
<center>
<h1 align="center">To illustrate text formatting tags </h1>
<hr color="red">
<P> <marquee behavior="alternate"> This is an alternate Marquee text
</marquee>
<p> This is <i> italized </i> </p>
<p> This is <u> underlined </u> </p>
<p> This is <b> bold </b> </p>
<p> This is <em> emphasized </em> </p>
<p>This is <Strong> Strong Text </strong> </p>
<p> This is <s> striked text </s> </p>
<p> This is <code> computer code </code> </p>
<p> This is <sup> superscript </sup> code </p>
<p> This is <sub> subscript </sub> code </p>
<p> This is <big> big text </big> </p>
<p> This is <small> small text </small> </p>
</center>
</body>
</html>Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 5
Part A Web Design Lab HTMLOUTPUT
Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 6
Part A Web Design Lab HTMLPROGRAM 5
<!-- A Program to illustrate Order List tag -->
<html>
<head>
<title> Order List tag </title>
</head>
<body>
<h3 align="center" style="color:red">To illustrate ORDER list tags</h3>
<hr COLOR="RED">
<h4>Numbered list:</h4>
<ol>
<li>Apples</li>
<li>Bananas</li>
<li>Lemons</li>
<li>Oranges</li>
</ol><h4>Uppercase Letters list:</h4>
<ol type="A">
<li>Apples</li>
<li>Bananas</li>
<li>Lemons</li>
<li>Oranges</li>
</ol><h4>Lowercase letters list:</h4>
<ol type="a">
<li>Apples</li>
<li>Bananas</li>
<li>Lemons</li>
<li>Oranges</li>
</ol><h4>Roman numbers list:</h4>
<ol type="I">
<li>Apples</li>
<li>Bananas</li>
<li>Lemons</li>
<li>Oranges</li>
Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 7
Part A Web Design Lab HTML</ol>
<h4>Lowercase Roman numbers list:</h4>
<ol type="i">
<li>Apples</li>
<li>Bananas</li>
<li>Lemons</li>
<li>Oranges</li>
</ol>
</body>
</html>
OUTPUTDept. Of CS & IS, Govt. Polytechnic, Gulbarga 8
Part A Web Design Lab HTMLPROGRAM 6
<!-- A Program to illustrate Unorder List tag -->
<html>
<title> Unorder List </title>
</head>
<body>
<h3 align="center"> To illustrate unorder list tags </h3>
<hr color="red"><h4>Disc bullets list:</h4>
<ul type="disc">
<li>Apples</li>
<li>Bananas</li>
<li>Lemons</li>
<li>Oranges</li>
</ul><h4>Circle bullets list:</h4>
<ul type="circle">
<li>Apples</li>
<li>Bananas</li>
<li>Lemons</li>
<li>Oranges</li>
</ul><h4>Square bullets list:</h4>
<ul type="square">
<li>Apples</li>
<li>Bananas</li>
<li>Lemons</li>
<li>Oranges</li>
</ul></body>
</html>Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 9
Part A Web Design Lab HTMLOUTPUT
Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 10
Part A Web Design Lab HTMLPROGRAM 7
<!-- A Program to illustrate Nested and Definition tag -->
<html>
<head>
<title> Nested and Definition List <title>
</head>
<body>
<h3 align="center"> To illustrate Nested and Definition List Tags </h3>
<hr color="red">
<h4> An ordered nested List: </h4>
<ol>
<li> Coffee </li>
<li> Tea
<ol type= "a">
<li> Black tea </li>
<li> Green tea </li>
<ol type= "i" >
<li> China </li>
<li> Africa </li>
</ol>
</ol>
<li> Milk </li>
</ol>
<h4> A Definition List: </h4>
<dl>
<dt> Bangalore </dt>
<dd> -Capital City of Karnataka </dd>
<dt> Mumbai</dt>
<dd> -Capital city of Maharashtra </dd>
</dl>
</body>
</html>Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 11
Part A Web Design Lab HTMLOUTPUT
Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 12
Part A Web Design Lab HTMLPROGRAM 8
<!-- A Program to illustrate Img tag -->
<html>
<head>
<title> Image Tag </title>
</head>
<body><h3 align="center" style="color:red"> To illustrate image tags</h3> <hr>
<p>
<img src="flower.bmp" align="right" height="100" width="100"/>
This image is right aligned with the text
</p>
<br><br><br><br><hr>
<p>
<img src="flower.bmp" align="left" height="100" width="100"/>
This image is left aligned with the text
</p>
<br><br><br><br><hr>
This image is center aligned with the text.
<img src="flower.bmp" align="middle" height="100" width="100"/>
<br><br><br><br><hr>
This image is bottom aligned with the text.
<img src="flower.bmp" align="bottom" height="100" width="100"/>
<br><br><br><br><hr>
This image is top aligned with the text.
<img src="flower.bmp" align="top" height="100" width="100"/></body>
</html>Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 13
Part A Web Design Lab HTMLOUTPUT
Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 14
Part A Web Design Lab HTMLPROGRAM 9
<!-- A Program to illustrate Hyper Link tag (Anchor tag) -->
Home.html
<html>
<head>
<title> Link Tag </title>
</head>
<title>
<body>
<h3 align="center" style="color:red">To illustrate link Tags</h3> <hr>
Text as a link/hyperlink to another page : <a href="page1.html "> Click here!!!</a>
<hr>
Image as a link/hyperlink :<a href="page1.html">
<img src="flower.bmp" width="32" height="32" align="bottom"/></a>
<hr>
<p>
<a href="#C8">See also Chapter 8 ( link within a page )</a>
</p>
<h2>Chapter 1</h2>
<p>This chapter explains Pointers</p>
<h2>Chapter 2</h2>
<p>This chapter explains variables</p>
<h2>Chapter 3</h2>
<p>This chapter explains operator</p>
<h2>Chapter 4</a></h2>
<p>This chapter explains structure</p>
<h2>Chapter 5</h2>
<p>This chapter explains arrays</p>
<h2>Chapter 6</h2>
<p>This chapter explains linked list</p>
<h2>Chapter 7</h2>
<p>This chapter explains expressions</p>
<h2><a name="C8">Chapter 8</h2>
<p>This chapter explains Binary Trees</p>
<h2>Chapter 9</h2>
<p>This chapter explains Unordered trees</p>
<h2>Chapter 10</h2>
<p>This chapter explains Statements</p>
<h2>Chapter 11</h2>
<p>This chapter explains searching</p>
<h2>Chapter 12</h2>
Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 15
Part A Web Design Lab HTML<p>This chapter explains sorting</p>
<h2>Chapter 13</h2>
<p>This chapter explains Binary sort</p>
<h2>Chapter 14</h2>
<p>This chapter explains merge sort</p>
<h2>Chapter 15</h2>
<p>This chapter explains heap sort</p></body>
</html>Page1.html
<html>
<head>
<title> Page1.html </title>
</head>
<body>
<h1 align="center"> Hello!!! This is a new chapter </h1>
<a href="home.html"> Go to home </a>
</body>
</html>Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 16
Part A Web Design Lab HTMLOUTPUT
After Clicking On Click Me or the Flower image the output is
Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 17
Part A Web Design Lab HTMLAfter Clicking on the See also Chapter 8(link within a page) the output is
Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 18
Part A Web Design Lab HTMLPROGRAM 10
<!-- A Program to illustrate Table tag -->
<html>
<head>
<title> Table tag </title>
</head>
<body>
<center>
<h4>Table with border, vertical headers, cellpadding and cellspacing</h4>
<table border="10" cellpadding="10" cellspacing="10">
<tr>
<td></td>
<th>Name</th>
<th>Age</th>
<th>Telephone</th>
</tr>
<tr>
<th>Student 1</th>
<td>Radha Desai</td>
<td>20</td>
<td>123 456 789</td>
</tr>
<tr>
<th>Student 2</th>
<td>Geetha Bharadwaj</td>
<td>21</td>
<td>267 891 281</td>
</tr>
</table><hr>
<h4>Cell that spans two columns:</h4>
<table border="1">
<tr>
<th>Name</th>
<th colspan="2">Telephone</th>
</tr>
<tr>
<td>Radha</td>
<td>555 77 854</td>
<td>555 77 855</td>
Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 19
Part A Web Design Lab HTML</tr>
</table><hr>
<h4>Cell that spans two rows:</h4>
<table border="1">
<tr>
<th>First Name:</th>
<td>Radha</td>
</tr>
<tr>
<th rowspan="2">Telephone:</th>
<td>555 77 854</td>
</tr>
<tr>
<td>555 77 855</td>
</tr>
</table>
</center>
</body>
</html> OUTPUTDept. Of CS & IS, Govt. Polytechnic, Gulbarga 20
Part A Web Design Lab HTMLPROGRAM 11
<!-- A Program to illustrate Frame tag -->
mainframe.html
<html>
<head>
<title> Frame tag </title>
</head>
<head>
<frameset cols="20,60">
<frame src="f1.html">
<frame src="f2.html" name="main">
</frameset>
</frameset>
</head>
</html>
f1.html
<html>
<head>
<title> f1.html </title>
</head>
<body>
<h3> States of karnataka </h3>
<a href="gul.html" target="main"> gulbarga<br></a>
<a href="bid.html" target="main"> Bidar<br> </a>
</body>
</html>
f2.html
<html>
<head>
<title> f2.html </title>
</head>
<body>
<h1> Click on any state to get a welcome message </h2>
</body>
</html>
gulbarga.html
<html>
<head>
<title> Gulbarga.html </title>
</head>
<body bgcolor="green">
<h1> Welcome to gulbarga </h1>Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 21
Part A Web Design Lab HTML</body>
</html>
bidar.html
<html>
<head>
<title> bidar.html </title>
</head>
<body bgcolor="red">
<h1> Welcome to bidar </h1>
</body>
</html>
OUTPUTAfter Clicking On Gulbarga the output is :
After Clicking On Bidar the output is :
Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 22
Part A Web Design Lab HTMLPROGRAM 12
<!-- A Program to illustrate Form tag -->
<html>
<head>
<title> form tag </title>
</head>
<body>
<center>
<h3 align="center">To illustrate form based tags</h3> <hr color="red">
<form action="">
<p>This is a text box to enter any text.<input type="text" >
<p>This is a text box to enter password.<input type="password" >
<p>This is a text area to enter large text<textarea> </textarea>
<p>This is a button.<input type="button" Value="Click" >
<p><b><u>Radio Options</u></b><br>
<input type="radio" name="y" checked> yes
<input type="radio" name="n" checked> no </p>
<p><b><u>Checkbox Options</u></b><br>
Sunday<input type="checkbox" checked >
Monday<input type="checkbox" >
Tuesday<input type="checkbox" >
</p>
<p><b><u>Menu driven options </u></b>
<select name="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat">Fiat</option>
<option value="audi">Audi</option>
</select></p>
</form>
</center>
</body>
</html>Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 23
Part A Web Design Lab HTMLOUTPUT
Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 24
Part A Web Design Lab HTMLPROGRAM 13
<!-- A Program to illustrate span tag -->
<html>
<head>
<title> span tag </title>
<style type="text/css">
span.blue{ color:lightskyblue; font-weight:bold;}
span.green{ color:darkolivegreen; font-weight:bold;}
</style>
</head>
<body>
<p align="center">
<font size=10>
my mother has <span class="blue"> light blue </span> eyes and
my father has <span class="green"> dark green </span> eyes.
</font>
</p>
</body>
</html>OUTPUT
Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 25
Part A Web Design Lab HTMLPROGRAM 14
<!-- A Program to illustrate CSS (cascading style sheet) -->
<html>
<head>
<title> css demo </title>
<style type="text/css">body { background-color:red;}
h1 { color:orange; text-align:center;}
p { font-family: "Times new roman "; font-size: 20px;}
</style>
</head><body>
<h1> CSS EXAMPLE </h1>
<p> This is a paragraph </p></body>
</html>OUTPUT
Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 26
Part A Web Design Lab HTMLPROGRAM 15
<!-- A Program to illustrate Embedded Multimedia -->
<html>
<head>
<title> embedding multimedia </title>
</head>
<body>
<center>
<h1> Here is a video embedded on this webpage </h1>
<br><object data="Wildlife.wmv" type="video/msvideo" height=200 width=200
hspace=200 vspace=200>
</object></center>
</body>
</html>OUTPUT
Dept. Of CS & IS, Govt. Polytechnic, Gulbarga 27
You might also like
8 0 2 SailPoint Integration GuideDocument318 pages8 0 2 SailPoint Integration GuideAllen WsyNo ratings yet Webdesing Lab Part-A&bDocument36 pagesWebdesing Lab Part-A&blaptopuser197No ratings yet 10 Ca Lab WorkDocument28 pages10 Ca Lab Workluckykumarsingh726No ratings yet Alok Cni FileDocument29 pagesAlok Cni FileAlok kashyapNo ratings yet LabDocument28 pagesLabYash SoniNo ratings yet R.E.D School, Charkhi: Computer ApplicationsDocument16 pagesR.E.D School, Charkhi: Computer ApplicationsDisodia SahilNo ratings yet Learn HTML: Example 1Document14 pagesLearn HTML: Example 1Mostafa NasherNo ratings yet A Computer ProjectDocument31 pagesA Computer Projectsanjaijsu09No ratings yet R.E.D School, Charkhi: Computer ApplicationsDocument16 pagesR.E.D School, Charkhi: Computer ApplicationsDisodia SahilNo ratings yet That PecticleDocument30 pagesThat Pecticlesanjaijsu09No ratings yet Web Tech File Code OnlyDocument94 pagesWeb Tech File Code OnlySahil PathakNo ratings yet Web Programming Lab Manual-009Document76 pagesWeb Programming Lab Manual-009Paran JaiNo ratings yet AR HTML FileDocument25 pagesAR HTML Filesimrandeo444No ratings yet Aditya Niwal CoverDocument45 pagesAditya Niwal CoverAkashNo ratings yet Program:1Document39 pagesProgram:1meghna0827No ratings yet Web Programming Lab MCA 4TH SemDocument72 pagesWeb Programming Lab MCA 4TH SemJagdishTripathiNo ratings yet Internet and Web TechnologyDocument10 pagesInternet and Web Technologyanshurajpoot167No ratings yet HTML Head Title Title Head Body h2 h2 A Img A BR A A BR A A BR A Input A BR Body HTMLDocument20 pagesHTML Head Title Title Head Body h2 h2 A Img A BR A A BR A A BR A Input A BR Body HTMLÊvîl ÂttïtùðeNo ratings yet HTML ExamplesDocument15 pagesHTML ExamplesPeter MuneneNo ratings yet Java ScriptDocument29 pagesJava Scriptashishkumar140806No ratings yet 1 HTML With FramesDocument4 pages1 HTML With FramesspNo ratings yet Tutorial Pemrograman WebDocument77 pagesTutorial Pemrograman WebAan Kristanto NugrohoNo ratings yet HTML ProgrammeDocument43 pagesHTML ProgrammeRahul KumarNo ratings yet SL_week-1Document11 pagesSL_week-1bishu.a1030No ratings yet WPD Experiment All - NewDocument30 pagesWPD Experiment All - NewHemant IngawaleNo ratings yet Practical 2Document21 pagesPractical 2rs3666539No ratings yet HTMLDocument40 pagesHTMLnautiyalshivani987No ratings yet Vaish Arya Kanya Mahavidyalaya: Affiliated To: Mdu, Rohtak SESSION: 2019-2020Document29 pagesVaish Arya Kanya Mahavidyalaya: Affiliated To: Mdu, Rohtak SESSION: 2019-2020Kritika SinghNo ratings yet Web Technologies PracticalDocument20 pagesWeb Technologies Practicalkramanji336No ratings yet WP PracticalsDocument84 pagesWP Practicalsazra sabraiwalaNo ratings yet Rdbms SeminarDocument24 pagesRdbms SeminarMANI KANDANNo ratings yet Web DesigningDocument30 pagesWeb DesigningRajwinder SinghNo ratings yet C Vasu40Document55 pagesC Vasu40cityNo ratings yet E Commerce RecordDocument51 pagesE Commerce RecordJagdeep PabbaNo ratings yet web designing (HTML & CSS)Document11 pagesweb designing (HTML & CSS)mayurisn5No ratings yet HTML Programs: 1. Program To Print The ColorsDocument17 pagesHTML Programs: 1. Program To Print The ColorsChandramathi MNo ratings yet IT3401 Web Essential LabDocument51 pagesIT3401 Web Essential Labsakthibaska6161No ratings yet Presented By: Ruby Jindal Sumit Dhiman Sonit Chawda Mba-IbDocument44 pagesPresented By: Ruby Jindal Sumit Dhiman Sonit Chawda Mba-Ibamit1002001No ratings yet Website CssDocument31 pagesWebsite CssDixit Taneja VlogsNo ratings yet It HTML PracticalsDocument16 pagesIt HTML PracticalsPokeSparker XNo ratings yet Assigments Ec (Code)Document18 pagesAssigments Ec (Code)Bhargav PandeyNo ratings yet HTML & Css NotesDocument23 pagesHTML & Css Notesawanp986No ratings yet Tute 11 - Hypertext Markup LanguageDocument16 pagesTute 11 - Hypertext Markup Languagedewmini pradeepikaNo ratings yet HTML-PracticalPrograms 221020 134704Document13 pagesHTML-PracticalPrograms 221020 134704VickyGaming YTNo ratings yet U1 CreatingWebsiteBasicsUsingHTMLDocument13 pagesU1 CreatingWebsiteBasicsUsingHTMLSherril VincentNo ratings yet File 2 HTMLDocument8 pagesFile 2 HTMLtalhamajestichub.shop.pkNo ratings yet Web Programming Lab ManualDocument73 pagesWeb Programming Lab ManualKunal Arora0% (2) Java Script ..09Document28 pagesJava Script ..09ashishkumar140806No ratings yet Guru Gobind Singh Indraprastha Universitya: Institute of Innovation in Technology & ManagementDocument60 pagesGuru Gobind Singh Indraprastha Universitya: Institute of Innovation in Technology & ManagementArnav KumarNo ratings yet WT Exp 4Document5 pagesWT Exp 4JayaprakashNo ratings yet html questions sem3Document12 pageshtml questions sem3Nakul KukrejaNo ratings yet HTML 20Document30 pagesHTML 20Lakshya ChauhanNo ratings yet anchal_082750 (1)Document11 pagesanchal_082750 (1)TrialNo ratings yet PartA Programs FullDocument20 pagesPartA Programs FullHarishNo ratings yet Solution HTML - Program ListDocument74 pagesSolution HTML - Program ListKuldeepNo ratings yet HTMLNotesDocument29 pagesHTMLNotesshivanshjajsNo ratings yet Web Desighning Lab ManualDocument75 pagesWeb Desighning Lab ManualOpen WorldNo ratings yet WD LAb MAnual FinalDocument38 pagesWD LAb MAnual FinalKritika SharmaNo ratings yet Web 40Document36 pagesWeb 40Jignasha V SoniNo ratings yet Web Technology Practical Files-1Document70 pagesWeb Technology Practical Files-1Tj vlogsNo ratings yet Program-1 Aim:: TheoryDocument4 pagesProgram-1 Aim:: Theoryagoyal5145No ratings yet Bigdata External Programs 181801120034Document4 pagesBigdata External Programs 181801120034agoyal5145No ratings yet Bigdata External Programs 181801120034Document4 pagesBigdata External Programs 181801120034agoyal5145No ratings yet External Program2Document2 pagesExternal Program2agoyal5145No ratings yet MR K K Chakravarty CCU-VTZDocument1 pageMR K K Chakravarty CCU-VTZagoyal5145No ratings yet MR K K Chakravarty VTZ-CCUDocument1 pageMR K K Chakravarty VTZ-CCUagoyal5145No ratings yet Saranya CVDocument2 pagesSaranya CVagoyal5145No ratings yet Computer Forensics Intestigation ProcessDocument2 pagesComputer Forensics Intestigation Processagoyal5145No ratings yet Queues: CS 308 - Data StructuresDocument28 pagesQueues: CS 308 - Data Structuresagoyal5145No ratings yet Curriculam VitaeDocument1 pageCurriculam Vitaeagoyal5145No ratings yet Academic Planning FOR 2020-2021: VisakhapatnamDocument5 pagesAcademic Planning FOR 2020-2021: Visakhapatnamagoyal5145No ratings yet Rameswarapu NagmaniDocument1 pageRameswarapu Nagmaniagoyal5145No ratings yet Author ProfileDocument1 pageAuthor Profileagoyal5145No ratings yet MATPLOTLIB AssignmentDocument1 pageMATPLOTLIB Assignmentagoyal5145No ratings yet Code Course Title Course Type Credits Pre-RequisitesDocument15 pagesCode Course Title Course Type Credits Pre-Requisitesagoyal5145No ratings yet CloneDR PlanDocument8 pagesCloneDR PlanMario NấmNo ratings yet Error 522 - Connection Timed Out - Cloudflare SupportDocument4 pagesError 522 - Connection Timed Out - Cloudflare SupportwilvarelNo ratings yet C903IP 2 ManualDocument132 pagesC903IP 2 ManualKarlos JuradoNo ratings yet FPGADocument21 pagesFPGAHemanth Manjunath0% (1) Arabic Blackberry Case FinalDocument4 pagesArabic Blackberry Case FinalLee NaNo ratings yet EtreeDocument1 pageEtreeAngel RebongNo ratings yet IT-2205 Lec 03 Error Detection & Correction-1Document45 pagesIT-2205 Lec 03 Error Detection & Correction-1Irfan SaminNo ratings yet APi File StructuresDocument58 pagesAPi File StructuresAshish Kalvade0% (1) Mr. Habeebuz Zaman Mohamed SalmanDocument3 pagesMr. Habeebuz Zaman Mohamed Salmansameer233No ratings yet Broncolor Studio Light Monolights Minicomrfs enDocument12 pagesBroncolor Studio Light Monolights Minicomrfs eneternal_harpyNo ratings yet Experiment No.: 2: AIM: To Perform Encoding and Decoding For Hamming Code. APPARATUS: Scilab. TheoryDocument4 pagesExperiment No.: 2: AIM: To Perform Encoding and Decoding For Hamming Code. APPARATUS: Scilab. TheoryAnonymous fcVxWyENo ratings yet PythonDocument3 pagesPythonvatsala mishraNo ratings yet COMOS WalkinsideDocument2 pagesCOMOS WalkinsideridipisaNo ratings yet Editing Slides: With Polaris Office, You Can Create New .PPT and .PPTX Presentations or Edit Your Presentation With EaseDocument9 pagesEditing Slides: With Polaris Office, You Can Create New .PPT and .PPTX Presentations or Edit Your Presentation With EaseCiucă IoanaNo ratings yet TE - 1201302890 - Mohamad Faiz Bin Mohamad NorDocument5 pagesTE - 1201302890 - Mohamad Faiz Bin Mohamad NorMohamad HaikalNo ratings yet Lesson 1 Introduction To NetworkingDocument14 pagesLesson 1 Introduction To NetworkingKevin SambuNo ratings yet Fact BookDocument83 pagesFact Bookamie indraNo ratings yet 17119010A03 006 CSDS Computer System Design Specification v04.53Document20 pages17119010A03 006 CSDS Computer System Design Specification v04.53aai.information01No ratings yet Hw-Efficient Reduced-Latency Architecture For Configurable Mixed-Radix FFT ProcessorsDocument7 pagesHw-Efficient Reduced-Latency Architecture For Configurable Mixed-Radix FFT ProcessorsnikolicnemanjaNo ratings yet Document 2738152.1 Fusion INV Common Setups FBDIs REST APIs SOAP Services and Business Flows Related To Transfer OrderDocument25 pagesDocument 2738152.1 Fusion INV Common Setups FBDIs REST APIs SOAP Services and Business Flows Related To Transfer OrderPornnicha KuptawintuNo ratings yet (1573) Time Leaper Showcase (ABV) - YouTubeDocument1 page(1573) Time Leaper Showcase (ABV) - YouTubeKaden ReidNo ratings yet CADKEY Applications GuideDocument34 pagesCADKEY Applications Guiderkdas_sust5091No ratings yet 01-02 SVF ConfigurationDocument55 pages01-02 SVF ConfigurationGustavo Borges STELMATNo ratings yet 1415 Sem 1Document6 pages1415 Sem 1anson232323No ratings yet Delft3D Installation Manual PDFDocument78 pagesDelft3D Installation Manual PDFSiti HajarNo ratings yet Fannie Mae 1004 PDFDocument2 pagesFannie Mae 1004 PDFLauraNo ratings yet DCP L3510CDW PDFDocument8 pagesDCP L3510CDW PDFDani mcNo ratings yet NFS2-3030 Installation ManualDocument64 pagesNFS2-3030 Installation ManualdaithedayNo ratings yet How To Handle "RF Unit Maintenance Link Failure" Alarm in Wimax BTSDocument3 pagesHow To Handle "RF Unit Maintenance Link Failure" Alarm in Wimax BTSgazNo ratings yet