I'm attempting to make the button and text be next to each other but I need it to be centered. align="center"
does not work either for me.
function flee() {
console.log("flee");
}
body {
background-color: powderblue;
}
.p1 {
color: blue;
border-bottom: 5px solid black;
margin: 0;
}
.p2 {
color: red;
margin: 0;
padding-top
}
.label1 {
color: black;
}
.footer-nav {
align-items: center;
display: flex;
}
.wrap {
display: block;
align-items: center
}
.button1 {
background-color: green;
color: powderblue;
border-width: 0;
margin-left: 50px;
}
<p class="p1" align="center">
<font size="10">Welcome To Plieaxploits!</font>
</p>
<p class="p2" align="center">
<font size="5">We Are The Home Of Roblox Exploits!</font>
</p>
<p class="p1" align="center">
<font size="3.5">Simply Click The Button Next To The Script You Want And CLick Skip AD!</font>
</p>
<div class="footer-nav" align="center">
<p class="label1">
<font size="4" face="cursive">Flee The Facility GUI</font>
</p>
<button class="button1" onclick="flee()">
<font size="4" face ="cursive">GO!</font>
</button>
</div>