Categories: Asp.net
Tags:

Internal

<!Doctype HTML>
<html>
	<head>
		<!-- browsers / search engines crawlers  -->
		<title>Css Internal </title>
		<style>
			body{
				background-color: #edf787;
			}
			
			p{
				color: #900C3F;
			}
			
			h1{
				color: green; 
				font-size: 22px;
				font-family: verdana;
			}
			.neele{
				color: blue; 
				font-family: verdana;
				font-size: 14px;
				border: 1px dotted black;
			}
			
			.laal{
				color: red;
				font-family: comic sans ms;
			}
		</style>
		
	</head>

	<body>
	
	
	<p> No style paragraph </p>
	<h1> Global Business Consulting Firm </h1>
	
	<p class="neele"> We are leading Business Consulting Firm. </p>
	
	<p class="laal"> We are leading Business Consulting Firm. </p>
	
	<p class="neele"> We are leading Business Consulting Firm. </p>
	
	<p class="laal"> We are leading Business Consulting Firm. </p>


	<p class="laal"> Hello  </p>
	
	<h1> My company is the best  </h1>
	<h2> My company is the best  </h2>
	
	</body>

</html>
<!Doctype HTML>
<html>
	<head>
		<!-- browsers / search engines crawlers  -->
		<title>Global Business Consulting Firm</title>
		
	</head>

	<body style="font-size: 14px;">
	
	<h1 style="
	color: green; 
	font-size: 22px;
	font-family: verdana;
	"> Global Business Consulting Firm </h1>
	
	<p style="
	color: blue; 
	font-family: verdana;
	font-size: 14px;
	"> We are leading Business Consulting Firm. </p>
	
		<p style="
	color: red; 
	"> We are leading Business Consulting Firm. </p>
	
		<p style="
	color: blue; 
	font-family: verdana;
	font-size: 14px; 
	"> We are leading Business Consulting Firm. </p>
	
		<p style="
	color: red; 
	"> We are leading Business Consulting Firm. </p>


	<p style="
	color: red; 
	"> Hello  </p>
	</body>

</html>