Demo

by vaheed akhtar

HTML

<div class="content">
        <h1>Manage Quiz</h1>
        <form id="add-cafe-form">
          <input type="text" name="question" placeholder="Quiz Question">
          <input type="text" name="right" placeholder="Right Answer">
          <input type="text" name="wrong" placeholder="Wrong Answer">
          <button>Add Question</button>
        </form>
        <ul id="esequiz-list" />
      </div>

CSS

h1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
h2 {
  width: 100%;
  vertical-align: middle;
  color: rgb(5, 5, 5);
  font-size: 25px;
  letter-spacing: 0px;
  top: 0;
  text-align: left;
  padding: 10;
}
h2:after {
  content: " ";
  display: block;
  border: 2px solid rgb(122, 119, 119);
}