+ 4
How i can set the opacity of the text and form elemenats in html
the opacity in html
2 Respostas
+ 42
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style>
h1{
color:rgba(255,0,255,0.3);
}
</style>
</head>
<body>
<h1>Text here</h1>
</body>
</html>
https://code.sololearn.com/WyF3TuY3fH62/?ref=app
https://code.sololearn.com/WQU5SO99551C/?ref=app
+ 7
https://www.sololearn.com/Course/CSS/
^Go through the CSS course. It goes hand-in-hand with HTML and is what's used for HTML styling.