I'm trying to put multiple links on the same line so I can have a whole bar of links, I've tried this:
<a href="website_homepage.htm"><h2 style="font-family:tempus sans itc;">Home</h2></a> <a href="website_hills.htm"><h2 style="font-family:tempus sans itc;">Hills Pupil Tailored Website</h2></a>
but when I test to see if it works, these two links are on seperate lines, does anyone know how I can get them on the same line?
Give your links a display of "inline-block" and they will appear next to each other. You can then add some padding or margin to give them some space. You can achieve the same result by using the li tag and giving them the display:inline-block style.
The <a> tag defines a hyperlink and is used to link from one page to another. href attribute is used with the <a> tag, which indicates the link's destination. To create page links in an HTML page, we need to use the href attribute of the <a> and </a> tag. Make sure that the <a></a> tag is placed with in the <body>…
Use the #id selector from another page You can also jump to a specific part of another web page by adding #selector to the page's URL.
A HTML document can have multiple <link> elements to load different script or page types. All of these <link> elements must be placed in the <head> section of the HTML document.
Simply add:
h2{
display: inline;
}
To your CSS and the problem will be solved.
That's because of h2
display
property which is block
.
Try with:
h2 {
display: inline-block;
}
or
h2 {
display: inline;
}
at the beginning of your file (enclosed by <style>
tags) or in your stylesheet file.
See Typical default display properties here
Alternatively replace "h2" with for example "span" and the links will be on the same line.
or you could put:
<h2 style="font-family:tempus sans itc;"><a href="website_homepage.htm">Home</a> <a href="website_hills.htm">Hills Pupil Tailored Website</a></h2>
Putting all the links within one h2 tag instead of using one for each link.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With