im trying to display things inline using css that should be right next to each other i.e.
PART1 part2
instead of
PART1
part2
my code is here
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to add
inlineto theH2tag. The header is a block level element, which will place a break before and after.The
Atag is inline by default.You can also float them, but that is overkill in your case.