Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Web development or phyton, Study notes of Web Application Development

Sequence(List) Code: List = [] print("Initial blank List: ") print(List) List = ['GeeksForGeeks’] print("\nList with the use of String: ") print(List)List = ["Geeks", "For", "Geeks"] print("\nList containing multiple values: ") print(List[0]) print(List[2]) List = [['Geeks', 'For'], ['Geeks’]] print("\nMulti-Dimensional List: ") print(List)

Typology: Study notes

2023/2024

Available from 10/02/2024

deepanshu-bahuguna
deepanshu-bahuguna 🇮🇳

4 documents

1 / 17

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
NAME – DEEPANSHU BAHUGUNA
ROLL NO –230413726
SUBJECT CODE –PBC302
SUBJECT NAME –Web Application Development lab
SUBMITTED TO – MS. TAMANNA
Problem of statement 1 -: Create an XHTML web page that demonstrates the use of the following
XHTML tags
Paragraphs, headings, and character entities.
<!DOCTYPE html >
<html>
<head>
<title>XHTML Webpage</title>
</head>
<body>
<h1>Welcome to XHTML Page</h1>
<p>This is a paragraph demonstrating basic XHTML .</p>
<h2>Using Character Entities</h2>
<p>Character entities are used to display special characters that would otherwise be interpreted as
HTML code. Here are some examples:</p>
<ul>
<li>&lt; - Less-than sign</li>
<li>&gt; - Greater-than sign</li>
<li>&amp; - Ampersand</li>
<li>&quot; - Double quotation mark</li>
<li>&apos; - Single quotation mark</li>
</ul>
</body>
</html>
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff

Partial preview of the text

Download Web development or phyton and more Study notes Web Application Development in PDF only on Docsity!

NAME – DEEPANSHU BAHUGUNA

ROLL NO –

SUBJECT CODE –PBC

SUBJECT NAME –Web Application Development lab SUBMITTED TO – MS. TAMANNA Problem of statement 1 -: Create an XHTML web page that demonstrates the use of the following XHTML tags Paragraphs, headings, and character entities.

XHTML Webpage

Welcome to XHTML Page

This is a paragraph demonstrating basic XHTML .

Using Character Entities

Character entities are used to display special characters that would otherwise be interpreted as HTML code. Here are some examples:

  • < - Less-than sign
  • > - Greater-than sign
  • & - Ampersand
  • " - Double quotation mark
  • ' - Single quotation mark

NAME – DEEPANSHU BAHUGUNA

ROLL NO –

SUBJECT CODE –PBC

SUBJECT NAME –Web Application Development lab SUBMITTED TO – MS. TAMANNA Problem of statement 3 -: Create an XHTML web page that demonstrates the use of Image.

Placeholder Image

NAME – DEEPANSHU BAHUGUNA

ROLL NO –

SUBJECT CODE –PBC

SUBJECT NAME –Web Application Development lab SUBMITTED TO – MS. TAMANNA Problem of statement 4 -:Create an XHTML web page that demonstrates the usage of ordered, unordered, and definition lists.

List Examples in XHTML

types of list

Unordered List

  • Orange
  • Mango
  • Apple

Ordered List

  1. First item
  2. Second item
  3. Third item

Definition List

HTML
HyperText Markup Language, the standard language for creating web pages.



XHTML
Extensible HyperText Markup Language.


CSS
Cascading Style Sheets, used to describe the presentation of a document written in HTML or XHTML.
3C508934 4D473956 5E676921

NAME – DEEPANSHU BAHUGUNA

ROLL NO –

SUBJECT CODE –PBC

SUBJECT NAME –Web Application Development lab SUBMITTED TO – MS. TAMANNA Problem of statement 6 -: Create an XHTML page that displays a Form with all types of controls (Text Boxes, Radio buttons, Checkboxes, Dropdown, Submit, and Reset buttons) with proper formatting.

CREATING A FORM

REGRISTRATION OF FORM

Name:

Second Name:

Contact:

Date of Brith:

Email:

Password:

Gender:

Male

NAME – DEEPANSHU BAHUGUNA

ROLL NO –

SUBJECT CODE –PBC

SUBJECT NAME –Web Application Development lab SUBMITTED TO – MS. TAMANNA Problem of statement 7-: Develop a web page and demonstrate the usage of inline style, internal style, and external style sheets using CSS.

1. Inline CSS-: Inline CSS example

Paragraph one is red.

Paragraph two is yellow.

.d4 { background-color: blue; height: 200px; width: 200px; margin-left: 200px; margin-top: -200px; }

this is divison1
this is divison2
this is divison3
this is divison4
>