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

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

September 27, 2022 1 min read 142
دورة تطوير المواقع الإلكترونية 6

  <!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">

<!-- internal link  -->

<style type="text/css">
	
h1{
	color: red;
}


</style>

</head>
<body>
<!-- inline linking -->
<p style="color: white; " > hello </p>
<p>welcome</p>
<h1>my heading 1</h1>

</body>
</html>

--------------

CSS file
---------------

<br><br>
<h3>Css File</h3>

<textarea readonly="" style="background: rgb(38, 38, 38); border-radius: 10px; border: 1px solid transparent; color: white; direction: ltr; height: 300px; width: 90%;">     


 
body{
	/*
	welcome this is my css file
	*/
	background: gray;
	color: yellow;
}
Share:
Read next

Related articles