Do you want to create your own HTML NAVBAR then you are at the right blog site? Today in this post I will tell you How to create HTML NAVBAR in 2022. Following are the given code of How to create HTML NAVBAR in 2022.
<h2 class="text-center">CONTACT US</h2>
</div>
<div class="w-50 m-auto">
<form action="userinfo.php" method="POST">
<div class="form-group">
<label>USERNAME</label>
<input type="text" name="user" autocomplete="off" class="form-control">
</div>
<div class="form-group">
<label>EMAIL</label>
<input type="text" name="email" autocomplete="off" class="form-control">
</div>
<div class="form-group">
<label>MOBILE</label>
<input type="text" name="mobile" autocomplete="off" class="form-control">
</div>
<div class="form-group">
<label>MESSAGE YOUR FEEDBACK</label>
<textarea class="form-control" name="message"></textarea>
</div>
<button type="submit" class="btn btn-success">Submit</button>
</form>
</div>
0 Comments