Programming Classes
257 subscribers
35 photos
1 video
12 files
24 links
Tech For better Future!
Download Telegram
Which language is used to style and format the appearance of web pages?
Anonymous Quiz
28%
HTML
42%
CSS
26%
JavaScript
5%
PHP
πŸ‘2
πŸ‘4
Which one is not the file extension for HTML files?
Anonymous Quiz
21%
.html
75%
.htmls
4%
.html
πŸ‘3
Which HTML tag is used for defining the most important heading on a webpage?
Anonymous Quiz
8%
a. <b>
6%
b. <p>
80%
c. <h1>
6%
d. <h2>
πŸ‘3
Which one of the following HTML tags is an inline element?
Anonymous Quiz
18%
c. <h1>
59%
a. <b>
14%
b. <p>
8%
d. <h2>
πŸ”₯5πŸ‘3❀1
Quizzes for Web development Students ☝️☝️☝️☝️

Comment Your Score out of 6.
?/6

Don't Cheat and comment πŸ‘‡πŸ‘‡πŸ‘‡
πŸ‘4
Web Development students, we have a class next Friday After School at 9:10 - 10:00 (Local Time) so try Basic HTML tags before the class.What We Learn Under this heading
<html> tag
<head> tag
<body> tag and
paragraph editing tags
the place has not yet been decided but we have the chance to study in the ICT Lab.

Note: only those who registered last Saturday can attend this class.

If there is Any change in the date we will announce you through this chat.

Please share this post to your friends.
πŸ‘4
Basic computer and Python students, we have a class Tomorrow After School at 9:10 - 10:00 (Local Time)

Please share this post to your friends.
πŸ‘4
Quizzes For Web Development Course πŸ‘‡πŸ‘‡
πŸ‘1
Which tag is used to define the structure of an HTML document?
Anonymous Quiz
16%
a. <head>
29%
b. <body>
53%
c. <html>
3%
d. <title>
Which HTML element is used to specify the title of a web page?
Anonymous Quiz
16%
a. <header>
16%
b. <h1>
65%
c. <title>
3%
d. <meta>
Quizzes for Web development Students ☝️☝️☝️☝️

Comment Your Score out of 6.
?/6

Don't Cheat and comment πŸ‘‡πŸ‘‡πŸ‘‡
πŸ‘3
Introduction to Web Development and HTML:

Web development is the process of creating websites and web applications. It involves a range of skills and technologies used to build and maintain web-based projects. At the core of web development is Hypertext Markup Language (HTML), a markup language that structures and defines the content of web pages.

HTML - The Backbone of Web Development:

HTML, which stands for "Hypertext Markup Language," is the standard language for creating web pages. It provides the basic structure and content of a webpage, allowing developers to define the elements that make up a page, such as headings, paragraphs, images, links, forms, and more.

Key HTML Elements:

To get started with web development, it's essential to understand several key HTML elements. Here are some of the most important:

1. <!DOCTYPE html>:
- The <!DOCTYPE html> declaration is placed at the beginning of an HTML document. It specifies the document type and version, ensuring that the web browser interprets the HTML code correctly. This declaration is used in modern web development to indicate that the document is written in HTML5.

2. <html>:
- The <html> element is the root element of an HTML document. It serves as the container for all other HTML elements and defines the overall structure of the page. Within <html>, you'll find the <head> and <body> sections.

3. <head>:
- The <head> element is located within the <html> element but before the <body>. It contains metadata and elements that are not displayed on the web page itself. Elements within <head> include <title> (specifying the page title), <meta> (providing character encoding and other metadata), and more.

4. <body>:
- The <body> element is also located within the <html> element and comes after the <head>. It contains the visible content of the web page, such as text, images, links, and other media. This is where you create the structure and layout of your web page's user interface.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My First Web Page</title>
</head>
<body>
<h1>Welcome to My Website</h1>
<p>This is a simple example of an HTML web page. It contains a title, a heading, and a paragraph of text.</p>
</body>
</html>
πŸ‘3❀1
#Basic_computer
1. What does CPU stand for?
a) Central Processing Unit
b) Computer Processing Unit
c) Control Processing Unit
d) Central Power Unit
#Basic_computer
3. What is the purpose of RAM in a computer?
a) To store permanent data
b) To control the computer's operations
c) To provide temporary storage for data and programs being used by the CPU
d) To connect various hardware components
πŸ‘4
Python: section A students