Answers for "html symbols"

27

copyright symbol html

©
Posted by: Guest on February-24-2020
1

html symbols

<p>I will display &euro;</p>
<p>I will display &#8364;</p>
<p>I will display &#x20AC;</p>
Posted by: Guest on February-26-2021
0

. and # in html

<!DOCTYPE html>
<html>
<head>
<style>
.classname {
  background-color: green;
  color: white;
}
#idname {
  background-color: pink;
  color: white;
}
</style>
</head>
<body>
<div class="classname">I am  green colour<div>
<div id="idname">I am  pink colour</div>
</body>
</html>
Posted by: Guest on September-10-2020

Browse Popular Code Answers by Language