I am a beginner in HTML and I am trying to create a logout page that should have a design similar to this:
https://i.sstatic.net/ld1R1.png
I attempted to create it but I am struggling to position the icon correctly and I also want the whole content to be enclosed in a box, which I am finding challenging. Below is the code I have written for this.
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Thank you!</title>
</head>
<i class="bi bi-check-circle"></i>
<svg xmlns="http://www.w3.org/2000/svg" width="125" height="125" fill="#5D883C" class="bi bi-check-circle" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"/>
<path d="M10.97 4.97a.235.235 0 0 0-.02.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z"/>
</svg>
<body>
<div style="Width: 800px;
Height: 300px;
margin: 10px;">
</div>
<span style=
"font-size: 35px;
color: #707070;
margin-left: 30%;
text-align: center;"> Thank you! We value your support and partnership.</span>
<h4>
<span style="font-size: 16px; font-family:Calibri; color: #707070; text-align: center; margin-left: 45%;">Click here to log back in:
</span>
<a href="/App/Login.aspx"><span style="font-size: 16px; color:#5D883C;text-align: center;">Login</span></a>
</h4>
</body>
</html>
I'm in need of assistance with this. Thank you in advance.