0% found this document useful (0 votes)
25 views8 pages

WT Practical 7to10

Web technique program seven to ten to help in exam point of you

Uploaded by

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

WT Practical 7to10

Web technique program seven to ten to help in exam point of you

Uploaded by

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

Program 7

Write a Program in HTML to display Subject wise Reference books using Description List or Definition List
tag.
Program:
<html>
<head>
<title>Program 07</title>
</head>
<body>
<h2 align="center">BCA 3<sup>rd</sup> SEM REFERENCE BOOK</h2>
<dl>
<dt><h3><u>VISUAL BASIC PROGRAMMING</u></h3></dt>
<dd>Reference Books:<br>
1. VISUAL BASIC – to Advance by Soma Dasgupta [BPB Publication]<br>
2. Evangelos Petroutsos, Mastering Visual Basic 6.0 BPB Publication.<br>
3. VISUAL BASIC 6 COMPLETE REFRENCE (TMH PUB)<br>
4. Visual Basic 6 Deitel & Deitel (Pearson Education)<br>
5. Mastering VB 6.0 Black Book -Peter - Norton-Techmedia.</dd>
<dt><h3><u>DATA BASE MANAGEMENT SYSTEM</u></h3></dt>
<dd> Reference Books:<br>
1. Data Base System Concepts By A SilbersChatz By Henry Korth And S.Sudarshan [Mcgraw-Hill ltd. New
Delhi] 3rd Edition.<br>
2. Introduction to Data Base Management by NAVEEN PRAKASH [Tata McGrawHill ltd.]<br>
3. Bipin C. Desai, An Introduction to Database Systems, Galgotia Publications.<br>
4. Raghu Ramakrishnan & Johannes Gerhrke, "Data Base Management Systems", Mc Graw Hill
International Edition, 2000<br>
5. Muzumdar, Introduction to Database Management Systems. TMH</dd>
<dt><h3><u>DATA STRUCTURES</u></h3></dt>
<dd>Reference Books:<br>
1. Classical Data Structures : D. Samanta. PHI, New Delhi.<br>
2. DATA STRUCTURE : LIPSCTUZ SCHUM OUTLINE SERIES<br>
3. Data structure Using C++ : Y. Kanetkar<br>
4. Data Structures Using C++: Tennenbaum<br>
5. Data structures by Tremblay Sorenson<br>
6. Data structures by Bhagat singh Naps</dd>
<dt><h3><u>OPERATIONS RESEARCH – I</u></h3></dt>
<dd>Reference Books:<br>
1. Operation Research by Kanti Swarup, P. K. Gupta, Man Mohan [Sultan]<br>
2. Operation Research by R. Panneerselvam [PHI}<br>
3. Introduction to Operation Research by Billy E. Gillet [TMH]<br>
4. Operation Research by Hira Gupta<br>
5. Operation Research Problems and Solutions by Sharma J. K. [MacMillan]<br>
6. Operation Research Theory and Application by Sharma J. K., [MacMillan]
</dd>
<dt><h3><u>WEB TECHNOLOGY - I</u></h3></dt>
<dd>Reference Books:<br>
1.Internet and web design by R Bangia, Second edition , firewall media<br>
2. Multimedia and Wed technology by R Bangia<br>
3. Internet and web designing by ITELS (Macmillan)<br>
4. Web Enabled Commercial Application Development Using HTML, DHTML, JS, Perl by Ivan
Bayross<br>
5. Deitel, Deitel & Nieto, Internet and Worldwide Web how to Program, Pearson</dd>
<dt><h3><u>DIGITAL ELECTRONICS – I</u></h3></dt>
<dd>Reference Books:<br>
1. Digital Electronics by Gothman(PHI)<br>
2. Digital and analogue technique by Navaneeth, Kale and Gokhale<br>
3. Modern Digital Electronics by R. P. Jain</dd>
</dl>
</body>
</html>

OUTPUT:
Program 8
Write a Program in HTML to Demonstrate use of Nested ordered List
Program
<!--Nested Ordered List--!>
<html>
<head>
<title>Practical 08</title>
</head>
<body>
<h1>Nested Ordered List</h1>
<ol type="I">
<li>
Background Skills
<ol type="A">
<li>Unix Commands</li>
<li>Vim Test Editors</li>
</ol>
</li>
<li>
HTML
<ol type="A">
<li>Minimal Page</li>
<li>Headings</li>
<li>Elements</li>
<li>
Lists
<ol type="i">
<li>Unordered</li>
<li>Ordered</li>
<li>Definition</li>
<li>Nested</li>
</ol>
</li>
<li>
Links
<ol type="i">
<li>Absolute</li>
<li>Relative</li>
</ol>
</li>
<li>Images</li>
</ol>
</li>
<li>
CSS
<ol type="A">
<li>Anatomy</li>
<li>Basic Selectors
<ol type="i">
<li>Element</li>
<li>Class</li>
<li>ID</li>
<li>Group</li>
</ol>
</li>
<li>The DOM</li>
<li>Advanced Selectors</li>
<li>Box Model</li>
</ol>
</li>
<li>
Programming
<ol type="A">
<li>Python</li>
<li>JavaScript</li>
</ol>
</li>
<li>
Database
<ol type="A">
<li>Flat File</li>
<li>Relational</li>
</ol>
</li>
</ol>
</body>
</html>
OUTPUT:
Program 9
Write a Program in HTML to Demonstrate use of Nested Unordered List
Program:
<!-- Nested Unordered List--!>
<html>
<head>
<title> Practical 09 </title>
</head>
<body>
<h2>Nested Unordered List</h2>

<ul>
<li>Progrmming Languages
<ul>
<li>C</li>
<li>C++</li>
<li>Java</li>
<li>Python</li>
</ul>
</li>
<li>DSA
<ul>
<li>Array</li>
<li>Linked List</li>
<li>stack</li>
<li>Queue</li>
<li>Trees</li>
<li>Graphs</li>
</ul>
</li>
<li>Web Technologies
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Bootstrap</li>
<li>React Js</li>
</ul>
</li>
</ul>

</body>
</html>
OUTPUT:
Program 10

Write a Program in HTML to Demonstrate use of Nested Unordered and Ordered List

Program:
<html>
<head>
<title>
HTML Ordered and Unordered Lists
</title>
</head>
<body>
<h1>Ordered and Unordered Lists - What's The Difference?</h1>
<ol>
<p><li><b>Ordered Lists</b> - Ordering DOES matter.</p></li>
<ol>
<li>Visual Basic Programming</li>
<li>Data Base Management System</li>
<li>Data Structure</li>
<li>Operation Research-I</li>
<li>Web Technology-I</li>
<li>Digital Electronics-I</li>
</ol>
<p><li><b>Ordered Lists</b> - Order reversed.</li></p>
<ol reversed>
<li>Visual Basic Programming</li>
<li>Data Base Management System</li>
<li>Data Structure</li>
<li>Operation Research-I</li>
<li>Web Technology-I</li>
<li>Digital Electronics-I</li>
</ol>
<p><li><b>Unordered Lists</b> - Ordering DOES NOT matter.</li></p>
<ul>
<li>Visual Basic Programming</li>
<li>Data Base Management System</li>
<li>Data Structure</li>
<li>Operation Research-I</li>
<li>Web Technology-I</li>
<li>Digital Electronics-I</li>
</ul>
</body>
</html>
OUTPUT:

You might also like