1. Home
  2. /
  3. Blog
  4. /
  5. دورة تطوير المواقع الإلكترونية 8
Web design and development

دورة تطوير المواقع الإلكترونية 8

September 27, 2022 1 min read 140
دورة تطوير المواقع الإلكترونية 8
HTML File ------------

 
  <!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>my website</title>

	<!-- external linking -->
<link rel="stylesheet" type="text/css" href="style.css">


</style>

</head>
<body>

<div>
	<a href="">Home</a>
	<a href="">About</a>
	<a href="">Contact</a>	
	<a href="">العربية.</a>
</div>


</body>
</html>
  

CSS File -----------


body{
	background-color: black;
	text-align: center;
}

div{
	background: skyblue;
	width: 100%;
	max-width: 900px;
	min-width: 300px;
	float: left;
	height: 100%;
	min-height: 10px;
	max-height: 70px;
}
a{
	direction: rtl; /* direction:ltr;   default */
	display: inline-block;
	color: black;
	text-decoration: none;
	margin: 2px;
	padding: 2px;
	font-size: 12px;
	opacity: 0.9;
}
Share:
Read next

Related articles