I need to turn this picture into a HTML content.I am trying again and again.But I cant make it. Can anyone help me with this?
This is all I tried:
JavaScript
x
10
10
1
#group div.current{
2
display: block;
3
border: 1px solid red;
4
}
5
btn-group{
6
display: block;
7
text-align: center;
8
margin-left: auto;
9
margin-right: auto;
10
}
JavaScript
1
12
12
1
<div id="group">
2
<div>
3
<p></p>
4
<div class="btn-group">
5
<button>Apple</button>
6
<button>Samsung</button>
7
<button>Sony</button>
8
<button>Sy</button>
9
</div>
10
</div>
11
</div>
12
<div id="next">next</div>
Advertisement
Answer
There you go:
JavaScript
1
11
11
1
<div style="height:150px;width:300px;border-radius:50px;border:1px solid black;padding:40px">
2
<div style="font-size:30px;">Text</div>
3
<div style="float:right;position:absolute;top:20px; left:200px;">
4
<input type="button" value="button1" style="height:40px;width:90px;border-radius:30px;outline:none;border:1px solid black;color:white;background-color:#5dbb63;margin:5px;"><br>
5
<input type="button" value="button2" style="height:40px;width:90px;border-radius:30px;outline:none;border:1px solid black;color:white;background-color:#5dbb63;margin:5px;"><br>
6
<input type="button" value="button3" style="height:40px;width:90px;border-radius:30px;outline:none;border:1px solid black;color:white;background-color:#5dbb63;margin:5px;"><br>
7
<input type="button" value="button4" style="height:40px;width:90px;border-radius:30px;outline:none;border:1px solid black;color:white;background-color:#5dbb63;margin:5px;">
8
</div>
9
<div style="float:right;position:absolute;top:100px; left:40px;">
10
<input type="button" value="button5" style="height:40px;width:90px;border-radius:30px;outline:none;border:1px solid black;color:white;background-color:#5dbb63;margin:5px;">
11
</div>