Write a code in html to display a text information technology ehanging font size 36 and on font colour green and blinking effect
Kshitijgagan:
hey visit earthedition.in for more details
Answers
Answered by
1
Answer:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Answer</title>
<style>
.myText {
color: green;
font-size: 36px;
}
.myText:hover { color: white; }
</style
</head>
<body>
<p class="myText">Information Technology</p>
</body>
</html>
<!--
I don't exactly know what you mean by blinking effect, but it will blink (logically get white) when you put mouseover it.
Explain: Here we make a HTML element p, with class "myText", then put a CSS code to select it using "." operator and set its color and font size properties. CSS offers a additional feature :hover, state of element when mouse is over it.
-->
Similar questions