I am trying to use HTML5 to mimic APA6 writing standards. I want to make header tags (<h>
) 3-6 not go to the next line and am not sure if/how I can do this by altering the css style.
<html>
<head>
<title>Title</title>
<style>
h3 {font-size: 16px; font-weight:bold;}
</style>
</head>
<body>
<h2>What it looks like...</h2><hr>
<h3>Level 3 Header.</h3>
<p>Content here. Lots of random text to make an academic sound smart.. I've done my best to maintain APA6 standards in this document but within HTML5 some rules do not make sense. For instance, there are no page breaks.</p>
<br><br><br><br>
<h2>What I'd like it to look like...</h2><hr>
<p><b>Level 3 Header.</b> Content here. Lots of random text to make an academic sound smart.. I've done my best to maintain APA6 standards in this document but within HTML5 some rules do not make sense. For instance, there are no page breaks.</p>
</body>
</html>
` tag directly after. However the html I'm working with has all content wrapped in the p tags and doesn't appear to work unless they're removed.
– Tyler Rinker Jan 08 '14 at 05:35