Just starting out with Wix for my website. I have a block of HTML code that creates a blue rectangle, but I want it to disappear automatically after 30 seconds.
What additional code do I need to achieve this effect? Also, is there any unnecessary code I can remove while still maintaining the blue rectangle?
Many thanks for your assistance.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<style type="text/css">
p.one
{
width: 100px; height: 100px;
background-color: #0000ff
}
</style>
<body>
<p class="one">
</body>
</html>