Can anyone help me with HTML?

Chelsea N

New member
I have an HTML class and I haven't done HTML in like 7 years, so when I was trying to align the text right, after using every code imaginable, it gets rid of all my text, and blows up the words i'm trying to move, it also moves them to the top of the page...Someone please help me!!

God Bless,
Chelsea
<p><i>Exeunt</i></p><hr>
Go to Scene 2</div></hr>
<hr>



<p><i>Text provided by Online Shakespeare</i></p></hr>

this is the code i'm working with, and the scene 2 and shakespear is what i need right, and hwnei go to verify it, it says that every single "<" is wrong....I'm so confused..
 
The first error I notice is the closing </div> tag... did you have an opening <div> before that?

Second, <hr /> is a single tag... somewhat like <input> and <link>, it doesn't open and close, but rather is a single entity, not a container, and so instead of <hr></hr>, it's <hr />.

It looks like you're trying to put "Text provided by Online Shakespeare" and "Go to Scene 2" on top of horizontal rules. For that, you will need to know CSS.
 
Back
Top