Snippets tagged “html-a-tag”
14 snippets use this tag.
- How to Add an Anchor Link to Jump to a Specific Part of a PageHTML
Learn how to create an anchor link to jump to a specific section of a page, and how to link to the anchor from another webpage. Also see how to style the jumping anchor link with examples.
- How to Add Telephone Links with HTMLHTML
In this snippet, you will find out how it is possible to add telephone links with HTML. See examples and try to add and style telephone links by yourself.
- How to Change the Style of the "title" Attribute Within an Anchor TagCSS
Since actually, we cannot style the “title” attribute inside an anchor tag, we suggest using some other methods of styling the tooltip inside an anchor tag.
- How to Create a Fixed Navbar with CSSCSS
Fixed navbars have conquered the internet! Know how to build a sticky navbar for your website with the simplest technique found in the tutorial.
- How to Create Button with Line BreaksHTML
Learn different ways of how to create buttons with line breaks. See also how to give styling to them with examples.
- How to Create Mailto LinksHTML
Learn about how to create a Mailto link in HTML step by step with examples. See also the downsides that Mailto links can have.
- How to Create Thumbnail ImagesCSS
If your Website contains lots of images and downloads slowly, read our snippet and learn to create thumbnail images, which will help you to solve this problem.
- How to Disable Links on the Current Page with Pure CSSCSS
Learn how to disable links on the current page using pointer-events and user-select properties. Also, find examples!
- How to Display the Hidden Element on Hovering Over a HyperlinkCSS
Learn how to display the hidden element on hovering over a hyperlink.
- How to Make a Div a Clickable LinkCSS
On this page you can see how to make a <div> element a clickable link.
- How to Open Hyperlink in a New WindowHTML
How to open hyperlink in a new tab using the target="_blank" attribute. Learn also how to do that by using JavaScript window.open function. See examples.
- How to Select All Child Elements Except the Last OneCSS
Sometimes, you may need to select all the child elements except the last element. For that purpose, you can use the :not and :last-child pseudo- classes.
- How to Use Font Awesome Icon as Content in CSSCSS
Today, icon fonts are quite common, and more and more developers are taking advantage of them in their designs. See how you can add them as a content.
- Is It Possible to Nest an HTML <button> Element Inside an <a> Element in HTML5CSS
In this snippet, learn whether it’s possible to nest a <button> tag within an <a> in HTML5. To have a button linking to somewhere, you need an alternative solution.