how to make a divide sign in html
<button>÷</button>
or separator css
<----------------------------- HTML ----------------------------------->
<div class="separator"></div>
<----------------------------- CSS ----------------------------------->
.separator {
width: 100%;
border-bottom: solid 1px;
position: relative;
margin: 30px 0px;
}
.separator::before {
content: "OR";
position: absolute;
left: 47%;
top: -8px;
background-color: #fff;
padding: 0px 10px;
}
html divider
Default:
<hr/>
OR:
<hr class="dashed" style="border-top: 3px dashed #bbb;">
<hr class="dotted" style="border-top: 3px dotted #bbb">
<hr class="solid" style="border-top: 3px solid #bbb;">
<hr class="rounded" style="border-top: 8px solid #bbb;border-radius: 5px;">
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us