0% found this document useful (0 votes)
73 views2 pages

Open Source Software

Open source software is software that is distributed with its source code, allowing it to be used, modified, and distributed freely. HTML defines the structure and layout of web pages using elements like headings, paragraphs, and tags. CSS describes how HTML elements are displayed by selecting elements and applying styles. It can control layout and formatting across multiple pages.

Uploaded by

net chucky
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)
73 views2 pages

Open Source Software

Open source software is software that is distributed with its source code, allowing it to be used, modified, and distributed freely. HTML defines the structure and layout of web pages using elements like headings, paragraphs, and tags. CSS describes how HTML elements are displayed by selecting elements and applying styles. It can control layout and formatting across multiple pages.

Uploaded by

net chucky
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/ 2

OPEN SOURCE SOFTWARE

UNIT I: INTRODUCTION TO HTML, CSS

2MARKS:

1. What is open source software?


Open source software (OSS) is software that is distributed with its source code,
making it available for use, modification, and distribution with its original rights.

2. What is HTML?

 HTML stands for Hyper Text Markup Language


 HTML is the standard markup language for creating Web pages
 HTML describes the structure of a Web page
 HTML consists of a series of elements
 HTML elements tell the browser how to display the content

3. What is HTML Element?

An HTML element is defined by a start tag, some content, and an end tag:

<tagname> Content goes here... </tagname>

The HTML element is everything from the start tag to the end tag:

<h1>My First Heading</h1>


<p>My first paragraph.</p>

4. What is HTML Tag?

HTML tags are like keywords which defines that how web browser will format and
display the content. With the help of tags, a web browser can distinguish between an
HTML content and a simple content.

5.What is Dynamic web content?

Dynamic content in the context of HTML and websites refers to website


content that constantly or regularly changes based on user interactions, timing and other
parameters that determine what content is delivered to the use
6. What Is an HTTP Request?

An HTTP request is made from a client to a host located on the server in order to
receive a resource needed to build the content.When they make a request, clients use
a URL (Uniform Resource Locator) that contains the information needed to access the
server resources.

7. What is HTML5 ?

HTML 5 is a revision of the Hypertext Markup Language (HTML), the standard


programming language for describing the contents and appearance of Web pages.
HTML5 was developed to solve compatibility problems that affect the current standard,
HTML4.

8. What is CSS?

 CSS stands for Cascading Style Sheets


 CSS describes how HTML elements are to be displayed on screen, paper, or in
other media
 CSS saves a lot of work. It can control the layout of multiple web pages all at
once
 External stylesheets are stored in CSS files

9.What is CSS selector?

CSS selectors are used to "find" (or select) the HTML elements you want to style.

We can divide CSS selectors into five categories:

 Simple selectors (select elements based on name, id, class)


 Combinator selectors (select elements based on a specific relationship between
them)
 Pseudo-class selectors (select elements based on a certain state)
 Pseudo-elements selectors (select and style a part of an element)
 Attribute selectors (select elements based on an attribute or attribute value)

10.Define CSS Colors.

The color CSS property sets the foreground color value of an element's text and
text decorations, and sets the currentcolor value .

You might also like