Podcast Beta
Questions and Answers
ما هو العنصر الرئيسي في مستند HTML؟
ما هو الغرض من عنصر في مستند HTML؟
ما هو النوع من العناصر التي تسمى بالعناصر البنائية؟
ما هو الغرض من السمة id في عنصر HTML؟
Signup and view all the answers
ما هو العنصر المستخدم لإنشاء رابط гипер متعدد؟
Signup and view all the answers
ما هو النوع من العناصر التي تسمى بالعناصر التصويرية؟
Signup and view all the answers
ما هو الاسم الكامل ل HTML؟
Signup and view all the answers
ما هو الجزء الأساسي من بنية مستند HTML؟
Signup and view all the answers
ما هو النوع من العناصر التي يمكن أن تحتوي على عناصر أخرى؟
Signup and view all the answers
ما هو الغرض من التعريفات العلوية في مستند HTML؟
Signup and view all the answers
ما هو الوسم الذي يحتوي على محتوى الصفحة؟
Signup and view all the answers
ما هو الوسم الذي يعلن نوع المستند؟
Signup and view all the answers
ما هو الغرض من السمة href في عنصر HTML؟
Signup and view all the answers
ما هو العنصر الذي ي 定ف القسم الرئيسي من مستند HTML؟
Signup and view all the answers
ما هو الغرض من السمة alt في عنصر HTML؟
Signup and view all the answers
ما هو النوع من HTML الذي يركز على معني المحتوى أكثر من عرضه؟
Signup and view all the answers
ما هو العنصر الذي ي địnhف القسم من المحتوى ذات الصلة؟
Signup and view all the answers
ما هو العنصر الذي ي địnhف قسم النavigation في مستند HTML؟
Signup and view all the answers
Study Notes
HTML Basics
- HTML stands for HyperText Markup Language
- It's a standard markup language used to create web pages
- HTML is the backbone of a website, providing structure and content
HTML Structure
-
HTML Document:
- Starts with
<!DOCTYPE html>
declaration -
<html>
element is the root element -
<head>
contains metadata about the document -
<body>
contains the content of the HTML document
- Starts with
HTML Elements
-
Elements:
- Represented by tags (
<tag>
) - Tags usually come in pairs, with the opening tag preceding the content and the closing tag following the content
- Some elements are self-closing (e.g.,
<img>
)
- Represented by tags (
-
Types of Elements:
-
Structural Elements (e.g.,
<p>
,<h1>
,<ul>
) -
Semantic Elements (e.g.,
<header>
,<nav>
,<footer>
) -
Presentational Elements (e.g.,
<b>
,<i>
)
-
Structural Elements (e.g.,
Common HTML Elements
-
Headings:
-
<h1>
,<h2>
,<h3>
, ...,<h6>
for headings
-
-
Paragraphs:
-
<p>
for paragraphs
-
-
Links:
-
<a>
for hyperlinks
-
-
Images:
-
<img>
for images
-
-
Lists:
-
<ul>
for unordered lists -
<ol>
for ordered lists -
<li>
for list items
-
HTML Attributes
-
Attributes:
- Provide additional information about an element
- Consist of a name and a value (e.g.,
href="https://www.example.com"
)
-
Common Attributes:
-
id
for unique identification -
class
for styling and grouping -
style
for inline styling -
title
for tooltips and additional information
-
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.
Description
Test your knowledge of HTML fundamentals, including HTML structure, elements, and attributes. Learn about the basics of HTML and how to use it to create web pages.