HTML and CSS webpage source code
Answers
Answer:
JavaScript is a dynamic computer programming language. It is lightweight and most commonly used as a part of web pages, whose implementations allow client-side script to interact with the user and make dynamic pages. It is an interpreted programming language with object-oriented capabilities
[tex]<html>
<head>
<title>Blinking text | nishchay</title>
<style>
@keyframes blink {
0% { opacity: 1 }
50% { opacity: 0 }
}
.blink {
color: limegreen;
animation: blink 1s infinite;
}
body {
font-family: Arial;
.center {
text-align: center;
}
hr.cntrct {
width: 50%;
align-text: center;
}
h2 {
text-align: center;
}
</style>
</head>
<body>
<h1 class="center">How to make blinking text using HTML and CSS only</h1>
<hr class="cntrct">
<h2 class="blink">This text is blinking</h2>
</body>
</html>