SlideShare a Scribd company logo
Date: 21 September 2020
Class: XII
Subject: Information Technology
Teacher: Aditi Bhushan
Chapter 1 - ADVANCE WEB TECHNOLOGY
Topics:
Table 3. 1
ADVANCED WEB DESIGNING
1 FORMS
A INPUT ELEMENTS
B INPUT RESTRICTIONS
2 META TAG - ATTRIBUTES
3 CSS
A INTO
B PROPERTIES
HTML CODES:
CODE 1: Revision of HTML Forms - <input type=”checkbox”>
Table 3. 2
<!DOCTYPE HTML>
<!-- write html program to display menu card of HOTEL DERBI with headlines and running 3 veg
and Non-Veg items displayed in checkboxes and place "ORDER" -->
<html>
<head>
<title>Hotel Menu</title>
</head>
<body>
<form>
<h1>Hotel Derbi</h1>
<h3>Veg</h3>
<input type="checkbox" name="c1" /> Chilli Paneer <br>
<input type="checkbox" name="c2" /> Spring Roll <br>
<input type="checkbox" name="c3" /> Chana Chaat <br>
<h3>Non-Veg</h3>
<input type="checkbox" name="c1" /> Chicken Chilli<br>
<input type="checkbox" name="c2" /> Chicken Butter Masala<br>
<input type="checkbox" name="c3" /> Chicken Handi <br> <br>
<input type="submit" value="ORDER" name="b1" />
</form>
</body>
</html>
Output of Code 1:
CODE 2: Revision of HTML Forms - <select> tag
Table 3. 3
<HTML>
<head>
<title> Details </title>
</head>
<body>
<h1> My Details </h1>
<form name="f1">
Student Name <input type="text" name="t1"><br>
Select College
<select name="s1">
<option>Narayana Junior College</option>
<option>Mutha Junior College</option>
<option>RKT College</option>
<option>Vivekananda College</option>
</select><br>
<input type="submit" value="Submit" name="b1"/>
<input type="reset" value="Clear" name="b2">
</form>
</body>
</HTML>
Output of Code 2:
CODE 3: Revision of HTML Forms and JavaScript
Table 3. 4
<html>
<head>
<title>Registration Form</title>
<script type="text/javascript">
function f1()
{
var name = document.form1.t1.value;
alert(name + " The form is submitted");
}
</script>
</head>
<body bgcolor="lightblue">
<h1>Student Registration Form</h1>
<hr >
<form name="form1"
method=post
action="add.html"
onSubmit=f1();>
ENTER NAME:
<input type="textbox" maxlength=10 required name=t1>
<br>
<br>
ENTER ADDRESS:
<textarea rows="5" cols="70" name=t3></textarea>
<br>
<br>
GENDER:
<br>
<input type="radio" name=r1>MALE
<br>
<input type="radio" name=r1 >FEMALE <BR>
Select Board: <br><BR>
<select name=s1>
<option value=1>State Board</option>
<option value=2>CBSE</option>
<option value=3>ICSE</option>
<option value=4>IB</option>
</select>
<br> <br>
Extra Curricular Activity: <br>
<input type="checkbox" name=c1 checked>Dance<br>
<input type="checkbox" name=c1>Music<br>
<input type="checkbox" name=c1>Paint<br>
<br>
<input type="reset" value="Clear">
<input type="submit" value="submit">
</form>
</body>
</html>
Output of Code 3:
CODE 3.1: add.html (obtained from code 3)
Table 3. 5
<!DOCTYPE HTML>
<html>
<head>
<title>MYPAGE</TITLE>
</head>
<body bgcolor="yellow">
<h1><u>
<font face="Cooper">WELCOME TO MUMBAI</font>
</u></h1>
</body>
</html>
Output of Code 3.1:
CODE 4: <meta> tag and its attributes
Table 3. 6
<html>
<head>
<meta name="aditi" contents="chapter1">
<meta name="class-xii" contents="advance web technology">
<meta name="keywords" contents="html5,css,js">
<meta http-equiv="refresh" content="5">
<meta http-equiv="expires" content="username=aditi; expires="Tuesday 15-09-2020, 23:59:59
IST;"
<title>FORMS IN HTML 5</title>
</head>
<body>
<h1>HELLO WORLD</h1>
CHOOSE A COLOR:<INPUT type="color">
Enter your Email: <input type="email">
</body>
</html>
Output of Code 4:
CODE 5: ADVANCED W.T. : <input> tag introduced elements of HTML 5
Table 3. 7
<!DOCTYPE HTML>
<html>
<head>
<title>Input Elements of HTML 5</title>
</head>
<body bgcolor="#F99B87">
<h1 align="center"><u>Enter Your Details</u></h1>
<table align="center" height="600" width="800" border=20>
<tr bgcolor="YELLOW">
<td>
<form name="f1" method=post action="h2.html">
Enter Text you want to search: <input type="search" /> <br><br><br>
WELCOME <input type="image" src="D:SUBJECTSHTML 5logo1.jpg" height=100 width=100
alt="click here to submit"/> <br><br><br>
Enter Full Name: <input type="text" required maxlength= 10/> <br><br><br>
Pick a color to customise your web page: <input type="color" value="#ff0000"/> <br><br><br>
Enter estimated number of user per day visit: <input type="number" /> <br><br><br>
Enter Company's Email: <input type="email" /> <br><br><br>
Enter Website URL: <input type="url" /> <br><br><br>
Enter company logo: <input type="file" /> <br><br><br>
Enter Date of Commencement: <input type="date" /> <br><br><br>
Enter Month of highest sale recorded: <input type="month" /> <br><br><br>
Enter today's date and time: <input type="datetime-local" /> <br><br><br>
Enter Company's Contact Mobile No.: <input type="tel" pattern="[0-9]{2}-[0-9]{10}"/>
<br><br><br>
<input type="Submit" Value="Submit Data"/>
<input type="Reset" Value="Clear Form"/> <br><br><br>
</form>
</td>
</tr>
</table>
</body>
</html>
Output of Code 5:
CODE 5.1: h2.html (obtained from code 3)
Table 3. 8
<html>
<head>
<meta name="aditi" contents="chapter1">
<meta name="class-xii" contents="advance web technology">
<meta name="keywords" contents="html5,css,js">
<meta http-equiv="refresh" content="5">
<title>Submitted</title>
</head>
<body>
<h1>Your Form is submitted.</h1>
</body>
</html>
Output of Code 5.1:
CODE 6: CSS Introduction – INTERNAL CSS
Table 3. 9
<html>
<head>
<meta name="css" contents="basic">
<title>CSS</title>
<style>
h1{
color: green;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
</style>
</head>
<body>
<h1>
Stream: SCIENCE
<P>Stream: Commerce</P>
</h1>
</body>
</html>
Output of Code 6:

More Related Content

Similar to HTML codes 1

1.1 html lec 1
1.1 html lec 11.1 html lec 1
1.1 html lec 1
IoT Code Lab
 
Html ,css,xml
Html ,css,xmlHtml ,css,xml
Html ,css,xml
Shweta Wankhade
 
What's new in ASP.NET 4
What's new in ASP.NET 4What's new in ASP.NET 4
What's new in ASP.NET 4
Robert MacLean
 
14_ HTML Con't.ppt
14_ HTML Con't.ppt14_ HTML Con't.ppt
14_ HTML Con't.ppt
vasujaiswal4
 
HTML.pptx
HTML.pptxHTML.pptx
HTML.pptx
DipaliJagtap6
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basics
xu fag
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basics
Nikita Garg
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA
Aiman Hud
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basics
Minea Chem
 
Learn JavaScript HTML & CSS
Learn JavaScript HTML & CSSLearn JavaScript HTML & CSS
Learn JavaScript HTML & CSS
Bilal Mirza
 
Lesson 1
Lesson 1Lesson 1
Lesson 1
vmmanikandan
 
HTML web design_ an introduction to design
HTML web design_ an introduction to designHTML web design_ an introduction to design
HTML web design_ an introduction to design
SureshSingh142
 
BBA IV Semester CA All Assignments
BBA IV Semester CA All AssignmentsBBA IV Semester CA All Assignments
BBA IV Semester CA All Assignments
Roshan Kumar
 
Html5, a gentle introduction
Html5, a gentle introduction Html5, a gentle introduction
Html5, a gentle introduction
Diego Scataglini
 
Html file
Html fileHtml file
Html file
Pawan Mishra
 
Html css java script basics All about you need
Html css java script basics All about you needHtml css java script basics All about you need
Html css java script basics All about you need
Dipen Parmar
 
Html code revision
Html code revisionHtml code revision
Html code revision
AditiBhushan3
 
1cst
1cst1cst
Intodcution to Html
Intodcution to HtmlIntodcution to Html
Intodcution to Html
Taha Malampatti
 
Html
HtmlHtml

Similar to HTML codes 1 (20)

1.1 html lec 1
1.1 html lec 11.1 html lec 1
1.1 html lec 1
 
Html ,css,xml
Html ,css,xmlHtml ,css,xml
Html ,css,xml
 
What's new in ASP.NET 4
What's new in ASP.NET 4What's new in ASP.NET 4
What's new in ASP.NET 4
 
14_ HTML Con't.ppt
14_ HTML Con't.ppt14_ HTML Con't.ppt
14_ HTML Con't.ppt
 
HTML.pptx
HTML.pptxHTML.pptx
HTML.pptx
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basics
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basics
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basics
 
Learn JavaScript HTML & CSS
Learn JavaScript HTML & CSSLearn JavaScript HTML & CSS
Learn JavaScript HTML & CSS
 
Lesson 1
Lesson 1Lesson 1
Lesson 1
 
HTML web design_ an introduction to design
HTML web design_ an introduction to designHTML web design_ an introduction to design
HTML web design_ an introduction to design
 
BBA IV Semester CA All Assignments
BBA IV Semester CA All AssignmentsBBA IV Semester CA All Assignments
BBA IV Semester CA All Assignments
 
Html5, a gentle introduction
Html5, a gentle introduction Html5, a gentle introduction
Html5, a gentle introduction
 
Html file
Html fileHtml file
Html file
 
Html css java script basics All about you need
Html css java script basics All about you needHtml css java script basics All about you need
Html css java script basics All about you need
 
Html code revision
Html code revisionHtml code revision
Html code revision
 
1cst
1cst1cst
1cst
 
Intodcution to Html
Intodcution to HtmlIntodcution to Html
Intodcution to Html
 
Html
HtmlHtml
Html
 

More from Aditi Bhushan

Binary Search
Binary SearchBinary Search
Binary Search
Aditi Bhushan
 
Chapter 15 [Bhagvad Geeta]
Chapter 15 [Bhagvad Geeta]Chapter 15 [Bhagvad Geeta]
Chapter 15 [Bhagvad Geeta]
Aditi Bhushan
 
COMPUTER SCIENCE CLASS 11
COMPUTER SCIENCE CLASS 11COMPUTER SCIENCE CLASS 11
COMPUTER SCIENCE CLASS 11
Aditi Bhushan
 
HTML and CSS codes
HTML and CSS codesHTML and CSS codes
HTML and CSS codes
Aditi Bhushan
 
Basics of python programming
Basics of python programmingBasics of python programming
Basics of python programming
Aditi Bhushan
 
Basics of Information Technology
Basics of Information TechnologyBasics of Information Technology
Basics of Information Technology
Aditi Bhushan
 
Calculation of Area of Circle and Rectangle
Calculation of Area of Circle and RectangleCalculation of Area of Circle and Rectangle
Calculation of Area of Circle and Rectangle
Aditi Bhushan
 
Calculation of first 100 numbers using do-until loop
Calculation of first 100 numbers using do-until loopCalculation of first 100 numbers using do-until loop
Calculation of first 100 numbers using do-until loop
Aditi Bhushan
 
HSc Information Technology Practical List
HSc Information Technology Practical List HSc Information Technology Practical List
HSc Information Technology Practical List
Aditi Bhushan
 
HSc Computer Science Practical Slip for Class 12
HSc Computer Science Practical Slip for Class 12HSc Computer Science Practical Slip for Class 12
HSc Computer Science Practical Slip for Class 12
Aditi Bhushan
 
Cpp source code1
Cpp source code1Cpp source code1
Cpp source code1
Aditi Bhushan
 
Fibonacci Series Program in C++
Fibonacci Series Program in C++Fibonacci Series Program in C++
Fibonacci Series Program in C++
Aditi Bhushan
 
Visual Basic Source Codes for Class 11 HSc Paper 1 Practicals
Visual Basic Source Codes for Class 11 HSc Paper 1 PracticalsVisual Basic Source Codes for Class 11 HSc Paper 1 Practicals
Visual Basic Source Codes for Class 11 HSc Paper 1 Practicals
Aditi Bhushan
 
Introduction to Visual basic 6.0
Introduction to Visual basic 6.0Introduction to Visual basic 6.0
Introduction to Visual basic 6.0
Aditi Bhushan
 
Functional hardware of pc
Functional hardware of pcFunctional hardware of pc
Functional hardware of pc
Aditi Bhushan
 
Language and its Function
Language and its FunctionLanguage and its Function
Language and its Function
Aditi Bhushan
 
Teacher autonomy : a tool to create learner autonomy
Teacher autonomy : a tool to create learner autonomyTeacher autonomy : a tool to create learner autonomy
Teacher autonomy : a tool to create learner autonomy
Aditi Bhushan
 
Importance of body language at workplace
Importance of body language at workplaceImportance of body language at workplace
Importance of body language at workplace
Aditi Bhushan
 
Role of indian govt. portal e pg pathshala
Role of indian govt. portal e pg pathshalaRole of indian govt. portal e pg pathshala
Role of indian govt. portal e pg pathshala
Aditi Bhushan
 
conservation of solar energy
conservation of solar energyconservation of solar energy
conservation of solar energy
Aditi Bhushan
 

More from Aditi Bhushan (20)

Binary Search
Binary SearchBinary Search
Binary Search
 
Chapter 15 [Bhagvad Geeta]
Chapter 15 [Bhagvad Geeta]Chapter 15 [Bhagvad Geeta]
Chapter 15 [Bhagvad Geeta]
 
COMPUTER SCIENCE CLASS 11
COMPUTER SCIENCE CLASS 11COMPUTER SCIENCE CLASS 11
COMPUTER SCIENCE CLASS 11
 
HTML and CSS codes
HTML and CSS codesHTML and CSS codes
HTML and CSS codes
 
Basics of python programming
Basics of python programmingBasics of python programming
Basics of python programming
 
Basics of Information Technology
Basics of Information TechnologyBasics of Information Technology
Basics of Information Technology
 
Calculation of Area of Circle and Rectangle
Calculation of Area of Circle and RectangleCalculation of Area of Circle and Rectangle
Calculation of Area of Circle and Rectangle
 
Calculation of first 100 numbers using do-until loop
Calculation of first 100 numbers using do-until loopCalculation of first 100 numbers using do-until loop
Calculation of first 100 numbers using do-until loop
 
HSc Information Technology Practical List
HSc Information Technology Practical List HSc Information Technology Practical List
HSc Information Technology Practical List
 
HSc Computer Science Practical Slip for Class 12
HSc Computer Science Practical Slip for Class 12HSc Computer Science Practical Slip for Class 12
HSc Computer Science Practical Slip for Class 12
 
Cpp source code1
Cpp source code1Cpp source code1
Cpp source code1
 
Fibonacci Series Program in C++
Fibonacci Series Program in C++Fibonacci Series Program in C++
Fibonacci Series Program in C++
 
Visual Basic Source Codes for Class 11 HSc Paper 1 Practicals
Visual Basic Source Codes for Class 11 HSc Paper 1 PracticalsVisual Basic Source Codes for Class 11 HSc Paper 1 Practicals
Visual Basic Source Codes for Class 11 HSc Paper 1 Practicals
 
Introduction to Visual basic 6.0
Introduction to Visual basic 6.0Introduction to Visual basic 6.0
Introduction to Visual basic 6.0
 
Functional hardware of pc
Functional hardware of pcFunctional hardware of pc
Functional hardware of pc
 
Language and its Function
Language and its FunctionLanguage and its Function
Language and its Function
 
Teacher autonomy : a tool to create learner autonomy
Teacher autonomy : a tool to create learner autonomyTeacher autonomy : a tool to create learner autonomy
Teacher autonomy : a tool to create learner autonomy
 
Importance of body language at workplace
Importance of body language at workplaceImportance of body language at workplace
Importance of body language at workplace
 
Role of indian govt. portal e pg pathshala
Role of indian govt. portal e pg pathshalaRole of indian govt. portal e pg pathshala
Role of indian govt. portal e pg pathshala
 
conservation of solar energy
conservation of solar energyconservation of solar energy
conservation of solar energy
 

Recently uploaded

C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
mulvey2
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
Priyankaranawat4
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Dr. Vinod Kumar Kanvaria
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
Celine George
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
taiba qazi
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
IreneSebastianRueco1
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
Celine George
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
WaniBasim
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
History of Stoke Newington
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
Dr. Shivangi Singh Parihar
 
Top five deadliest dog breeds in America
Top five deadliest dog breeds in AmericaTop five deadliest dog breeds in America
Top five deadliest dog breeds in America
Bisnar Chase Personal Injury Attorneys
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
TechSoup
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 

Recently uploaded (20)

C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
Exploiting Artificial Intelligence for Empowering Researchers and Faculty, In...
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
 
DRUGS AND ITS classification slide share
DRUGS AND ITS classification slide shareDRUGS AND ITS classification slide share
DRUGS AND ITS classification slide share
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
 
Top five deadliest dog breeds in America
Top five deadliest dog breeds in AmericaTop five deadliest dog breeds in America
Top five deadliest dog breeds in America
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 

HTML codes 1

  • 1. Date: 21 September 2020 Class: XII Subject: Information Technology Teacher: Aditi Bhushan Chapter 1 - ADVANCE WEB TECHNOLOGY Topics: Table 3. 1 ADVANCED WEB DESIGNING 1 FORMS A INPUT ELEMENTS B INPUT RESTRICTIONS 2 META TAG - ATTRIBUTES 3 CSS A INTO B PROPERTIES HTML CODES: CODE 1: Revision of HTML Forms - <input type=”checkbox”> Table 3. 2 <!DOCTYPE HTML> <!-- write html program to display menu card of HOTEL DERBI with headlines and running 3 veg and Non-Veg items displayed in checkboxes and place "ORDER" --> <html> <head> <title>Hotel Menu</title> </head> <body> <form> <h1>Hotel Derbi</h1> <h3>Veg</h3> <input type="checkbox" name="c1" /> Chilli Paneer <br> <input type="checkbox" name="c2" /> Spring Roll <br> <input type="checkbox" name="c3" /> Chana Chaat <br> <h3>Non-Veg</h3> <input type="checkbox" name="c1" /> Chicken Chilli<br> <input type="checkbox" name="c2" /> Chicken Butter Masala<br> <input type="checkbox" name="c3" /> Chicken Handi <br> <br> <input type="submit" value="ORDER" name="b1" /> </form> </body> </html>
  • 2. Output of Code 1: CODE 2: Revision of HTML Forms - <select> tag Table 3. 3 <HTML> <head> <title> Details </title> </head> <body> <h1> My Details </h1> <form name="f1"> Student Name <input type="text" name="t1"><br> Select College <select name="s1"> <option>Narayana Junior College</option> <option>Mutha Junior College</option> <option>RKT College</option> <option>Vivekananda College</option> </select><br> <input type="submit" value="Submit" name="b1"/>
  • 3. <input type="reset" value="Clear" name="b2"> </form> </body> </HTML> Output of Code 2: CODE 3: Revision of HTML Forms and JavaScript Table 3. 4 <html> <head> <title>Registration Form</title> <script type="text/javascript"> function f1() { var name = document.form1.t1.value; alert(name + " The form is submitted"); } </script> </head> <body bgcolor="lightblue"> <h1>Student Registration Form</h1> <hr > <form name="form1" method=post action="add.html" onSubmit=f1();>
  • 4. ENTER NAME: <input type="textbox" maxlength=10 required name=t1> <br> <br> ENTER ADDRESS: <textarea rows="5" cols="70" name=t3></textarea> <br> <br> GENDER: <br> <input type="radio" name=r1>MALE <br> <input type="radio" name=r1 >FEMALE <BR> Select Board: <br><BR> <select name=s1> <option value=1>State Board</option> <option value=2>CBSE</option> <option value=3>ICSE</option> <option value=4>IB</option> </select> <br> <br> Extra Curricular Activity: <br> <input type="checkbox" name=c1 checked>Dance<br> <input type="checkbox" name=c1>Music<br> <input type="checkbox" name=c1>Paint<br> <br> <input type="reset" value="Clear"> <input type="submit" value="submit"> </form> </body> </html> Output of Code 3:
  • 5. CODE 3.1: add.html (obtained from code 3) Table 3. 5 <!DOCTYPE HTML> <html> <head> <title>MYPAGE</TITLE> </head> <body bgcolor="yellow"> <h1><u> <font face="Cooper">WELCOME TO MUMBAI</font> </u></h1> </body> </html> Output of Code 3.1: CODE 4: <meta> tag and its attributes Table 3. 6 <html> <head> <meta name="aditi" contents="chapter1"> <meta name="class-xii" contents="advance web technology"> <meta name="keywords" contents="html5,css,js"> <meta http-equiv="refresh" content="5"> <meta http-equiv="expires" content="username=aditi; expires="Tuesday 15-09-2020, 23:59:59 IST;" <title>FORMS IN HTML 5</title> </head> <body> <h1>HELLO WORLD</h1> CHOOSE A COLOR:<INPUT type="color"> Enter your Email: <input type="email"> </body> </html>
  • 6. Output of Code 4: CODE 5: ADVANCED W.T. : <input> tag introduced elements of HTML 5 Table 3. 7 <!DOCTYPE HTML> <html> <head> <title>Input Elements of HTML 5</title> </head> <body bgcolor="#F99B87"> <h1 align="center"><u>Enter Your Details</u></h1> <table align="center" height="600" width="800" border=20> <tr bgcolor="YELLOW"> <td> <form name="f1" method=post action="h2.html"> Enter Text you want to search: <input type="search" /> <br><br><br> WELCOME <input type="image" src="D:SUBJECTSHTML 5logo1.jpg" height=100 width=100 alt="click here to submit"/> <br><br><br> Enter Full Name: <input type="text" required maxlength= 10/> <br><br><br> Pick a color to customise your web page: <input type="color" value="#ff0000"/> <br><br><br> Enter estimated number of user per day visit: <input type="number" /> <br><br><br> Enter Company's Email: <input type="email" /> <br><br><br> Enter Website URL: <input type="url" /> <br><br><br> Enter company logo: <input type="file" /> <br><br><br> Enter Date of Commencement: <input type="date" /> <br><br><br> Enter Month of highest sale recorded: <input type="month" /> <br><br><br> Enter today's date and time: <input type="datetime-local" /> <br><br><br> Enter Company's Contact Mobile No.: <input type="tel" pattern="[0-9]{2}-[0-9]{10}"/> <br><br><br> <input type="Submit" Value="Submit Data"/> <input type="Reset" Value="Clear Form"/> <br><br><br> </form> </td> </tr> </table> </body> </html>
  • 7. Output of Code 5: CODE 5.1: h2.html (obtained from code 3) Table 3. 8 <html> <head> <meta name="aditi" contents="chapter1"> <meta name="class-xii" contents="advance web technology"> <meta name="keywords" contents="html5,css,js"> <meta http-equiv="refresh" content="5"> <title>Submitted</title> </head> <body> <h1>Your Form is submitted.</h1> </body> </html> Output of Code 5.1:
  • 8. CODE 6: CSS Introduction – INTERNAL CSS Table 3. 9 <html> <head> <meta name="css" contents="basic"> <title>CSS</title> <style> h1{ color: green; font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif; } </style> </head> <body> <h1> Stream: SCIENCE <P>Stream: Commerce</P> </h1> </body> </html> Output of Code 6: