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 computer, Cheat Sheet of Computer Communication Systems

What Does A Web Developer Do? A Beginner's Guide for 2024 Learn web development fundamentals Choose a development specialization Learn key programming languages Work on projects Build your portfolio </> M

Typology: Cheat Sheet

2023/2024

Available from 10/05/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 โ€“ ANUPAM RATURI
UNIVERISTY ROLL NO โ€“2321196
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 computer and more Cheat Sheet Computer Communication Systems in PDF only on Docsity!

NAME โ€“ ANUPAM RATURI

UNIVERISTY ROLL NO โ€“ 2321196

SUBJECT CODE โ€“ PBC30 2

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 โ€“ ANUPAM RATURI

UNIVERISTY ROLL NO โ€“ 2321196

SUBJECT CODE โ€“ PBC30 2

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.

This is an example of an XHTML web page that includes an image.

Image Example

Placeholder Image

NAME โ€“ ANUPAM RATURI

UNIVERISTY ROLL NO โ€“ 2321196

SUBJECT CODE โ€“ PBC30 2

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 โ€“ ANUPAM RATURI

UNIVERISTY ROLL NO โ€“ 2321196

SUBJECT CODE โ€“ PBC30 2

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 โ€“ ANUPAM RATURI

UNIVERISTY ROLL NO โ€“ 2321196

SUBJECT CODE โ€“ PBC30 2

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
>