Day 28
مرحبا أصدقائي، اليوم سنستمر في دراسة كيفية تطوير تطبيقات الويب باستخدام html و css
1. Introduction to HTML and CSS
HTML
Definition: HTML is a markup language used to build the structure of web pages.
HTML elements: HTML pages consist of elements such as headings, paragraphs, links, images, tables, lists, and forms.
Basic HTML tags:
<html>: The main root of the document.
<head>: Contains the page metadata such as the title and links to CSS files.
<title>: The title of the page.
<body>: Contains the content of the page.
CSS
Definition: CSS is a styling language used to design the appearance of web pages.
CSS rules: Consists of selectors, properties, and values.
Types of styles:
Inline Styles: These are written inside HTML tags using the style attribute.
Internal Styles: These are placed inside the <style> tag in the <head> section.
External Styles: These are stored in separate files and linked to
the page using the <link> tag.
تعليقات
إرسال تعليق