HTML/CSS JAVASCRIPT please help me answer this question I will give you a good rating Thank you! Take the following static web page application with illustrated output, and modify it so that it produces the second illustrated output. You need to add and position two new red div elements, put the image inside the outer enclosing orange div, and place the same image inside the red divs. You can use any other image you have on file if you can’t locate the godaddy image Welcome to: webhamster.com This Web page is parked Free courtesy of GoDaddy.com Want to buy webhamster.com ? GoDaddy.com Learn How Search Ads THE CSS FILE FA19MID4L.css .aclass1{color:purple;} .span2{color:green; font-size: 20px;} .div1{ border-radius:5px; position:absolute; left: 850px; top:185px; width: 75px; height:25px; background-color:green;} .aclass2{color:white;} button{ position:absolute; top:325px; margin-left:400px;} .enclose{ border:solid green 2px; width:50%;
HTML/CSS JAVASCRIPT please help me answer this question I will give you a good rating Thank you!
Take the following static web page application with illustrated output, and modify it so that it produces the second illustrated output. You need to add and position two new red div elements, put the image inside the outer enclosing orange div, and place the same image inside the red divs. You can use any other image you have on file if you can’t locate the godaddy image
<! DOCTYPE html>
<html>
<head>
<link rel= "stylesheet" href= "FA19MID4L.css">
</head>
<body>
<img src= "GoDaddy.png"/>
<div class ="enclose">
<p> Welcome to: <strong>webhamster.com</strong> </br>
This Web page is parked <strong>Free </strong>courtesy of
<a class = "aclass1" href="https://www.godaddy.com">GoDaddy.com</a></p>
<h1>Want to buy <span class="span2">webhamster.com ?</span> </h1>
<a class="class3" href="https://www.godaddy.com">GoDaddy.com</a>
</div>
<div class ="div1">
<a class = "aclass2" href="https://www.godaddy.com">Learn How</a>
</div>
</hr>
<button> Search Ads </button>
</body>
</html>
THE CSS FILE FA19MID4L.css
.aclass1{color:purple;}
.span2{color:green;
font-size: 20px;}
.div1{
border-radius:5px;
position:absolute;
left: 850px;
top:185px;
width: 75px;
height:25px;
background-color:green;}
.aclass2{color:white;}
button{
position:absolute;
top:325px;
margin-left:400px;}
.enclose{
border:solid green 2px;
width:50%;


Step by step
Solved in 2 steps with 1 images









