1. Home
  2. /
  3. Blog
  4. /
  5. تجهيز بيئة العمل للغة css
CSS

تجهيز بيئة العمل للغة css

September 27, 2022 1 min read 2,270
تجهيز بيئة العمل للغة css
<!DOCTYPE html>
<html>
<head>
	<link rel="stylesheet" type="text/css" href="website.css">
	<title>website</title>
</head>
<body>
<style type="text/css">
	
	body{
background-color: red;
}

</style>

<p style="color: yellow;" >hello wolrd</p>

</body>
</html>

Share:
Read next

Related articles