Using notepad for web programming: Create three div elements, each with a width
ID: 3664974 • Letter: U
Question
Using notepad for web programming:
Create three div elements, each with a width of and heght of 100PX.
1. On the first element, create slightly rounded corners using a border of 3px black and border-radius of 10px.
2. On the second element, use a border of 3 px black and increase the border radius to 50px.
3. On the third, use a border of 3px black and increase the border radius to 100px.
4. Make the background color of each element a different color of your chosing.
5. Inside each element, display the value of the border-radius in bold text.
Explanation / Answer
Here is your html file
<html>
<body>
<div>
<b>border radius:10 px </b>
</div>
<div>
<b>border radius:50 px </b>
</div>
<div>
<b>border radius:100 px </b>
</div>
</body>
</html>
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.