<h1> اول صفحة ويب </h1>
<h1 dir="rtl"> اول صفحة ويب </h1>
<h1
dir="rtl"
> اول صفحة ويب </h1>
this addition named attribute
make this a title formate (size)
Book Store
<h1>Book Store</h1>
tell me the two most popular Syntax of meta
Remember what is mean of meta
The <meta> tag is used in HTML to provide metadata about the web page. Metadata is information about the data on the page, but it doesn't appear directly on the page itself. Instead, it helps browsers, search engines, and other web services understand and process the page better.
<meta>
A)<meta attribute-name="attribute-value">
<meta attribute-name="attribute-value">
EX
<meta charset="UTF-8">
B)<meta name="attribute-name" content="attribute-value">
<meta name="attribute-name" content="attribute-value">
<meta name="description" content="This is an example
page about HTML meta tags.">
<html>
<head>
<title>Amazon - Shop Online Now</title>
<meta name = "description" content="Shop millions of products at low prices with fast, free shipping. Your one-stop shop for everything you need.">
<meta
name
=
"description"
content
"Shop millions of products at low prices with fast, free shipping. Your one-stop shop for everything you need.">
</head>
<body>
this is my book store
</body>
</html>
make a blue background of book store web (sample of css code)
<title>book store</title>
<meta name = "description" content="store of books">
"store of books">
<style>
body{ background-color:blue}
body{ background-color
:
blue}
</style>
Last changed22 days ago