xxxxxxxxxx
index.html:
.
<div class="square_div">
</div>
.
style.css:
.square_div{
width: <input_width_here>;
height: <input_height_here>;
background-color: <input_color_here>;
}
xxxxxxxxxx
class Square
{
public static void main(String args[])
{
int i,sq=0; //Variable i and sq are declared
for(i=1;i<=10;i++) //for loop execution takes place
{
sq=i*i;
System.out.println("Square of"+i+"="+sq);//Prints the value stored in the variable i and sq.
}
}
}
xxxxxxxxxx
<div class="buttons" style="border-radius: 6px; font-size: 15px; text-align: center;">
<a class="fa fa-youtube-play" href="#" id="btn_yt" onclick="show()" onmouseout="this.style.background='5b95f5'" onmouseover="this.style.background='#5b95f5'" style="background: #5b95f5; border-radius: 6px; color: white; display: inline-block; font-size: 25px; font-weight: 700; margin: 15px 30px; padding: 14px 0px; text-decoration: none; transition: all 0.2s linear 0s; width: 250px;"> <strong>Subscribe To Unlock</strong></a>
xxxxxxxxxx
<div class="buttons" style="border-radius: 6px; font-size: 15px; text-align: center;">
<a class="fa fa-youtube-play" href="#" id="btn_yt" onclick="show()" onmouseout="this.style.background='5b95f5'" onmouseover="this.style.background='#5b95f5'" style="background: #5b95f5; border-radius: 6px; color: white; display: inline-block; font-size: 25px; font-weight: 700; margin: 15px 30px; padding: 14px 0px; text-decoration: none; transition: all 0.2s linear 0s; width: 250px;"> <strong>Subscribe To Unlock</strong></a>