Answers for "make quote in html css"

0

how can i make a quote element in html

<p>Anything you'd like to mention goes here: <blockquote>"Insert actual quote here."</blockquote> - Mr. Name</p>
Posted by: Guest on March-16-2020
0

add quotes in quote css

.tagline::before {
  content: "\275D";
}

.tagline::after {
  content: "\275E";
}

.tagline::after,
.tagline::before {
  color: #000;
  font-size: 28px;
  margin: 0 4px;
}
Posted by: Guest on December-30-2021

Browse Popular Code Answers by Language