Primer CSS Header-Link Last Updated : 19 Apr, 2022 Comments Improve Suggest changes Like Article Like Report Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by Object-Oriented CSS principles, functional CSS, and BEM architecture. It is highly reusable and flexible. It is created with GitHub’s design system. Primer CSS Header is used to make a header with vertically aligned items and horizontal spacing. Primer CSS Header-Link is used to create the header item link using Header-link class. In this article, we will discuss the Primer CSS Header-Link. Primer CSS Header-Link Class: Header-link: This class is used to create the header item link. Syntax: <div class="Header"> <div class="Header-item"> <a href="#" class="Header-link"> ... </a> </div> </div> Example 1: The following code demonstrates the Primer CSS Header-Link. HTML <!DOCTYPE html> <html> <head> <title> Primer CSS Header-Link </title> <link rel="stylesheet" href= "https://unpkg.com/@primer/css@^18.0.0/dist/primer.css" /> </head> <body> <div class="text-center"> <h1 class="color-fg-success"> GeeksforGeeks </h1> <h3> Primer CSS Header-Link </h3> </div> <br> <br> <div class="Header"> <div class="Header-item"> <a href="#" class="Header-link"> GFG Link 1 </a> </div> <div class="Header-item"> <a href="#" class="Header-link"> GFG Link 2 </a> </div> </div> </body> </html> Output: Primer CSS Header-Link Example 2: The following code demonstrates the Primer CSS Header-Link. HTML <!DOCTYPE html> <html> <head> <title> Primer CSS Header-Link </title> <link rel="stylesheet" href= "https://unpkg.com/@primer/css@^18.0.0/dist/primer.css" /> </head> <body> <div class="text-center"> <h1 class="color-fg-success"> GeeksforGeeks </h1> <h3> Primer CSS Header-Link </h3> </div><br><br> <div class="Header"> <div class="Header-item"> <a href="#" class="Header-link"> GFG Link 1 </a> </div> <div class="Header-item Header-item--full"> <a href="#" class="Header-link"> GFG Link 2 </a> </div> <div class="Header-item"> <a href="#" class="Header-link"> Logn In </a> </div> <div class="Header-item"> <a href="#" class="Header-link"> Sign Up </a> </div> </div> </body> </html> Output: Primer CSS Header-Link Reference: https://primer.style/css/components/header#header-link Comment More infoAdvertise with us Next Article Primer CSS Header-Link singh_teekam Follow Improve Article Tags : Web Technologies CSS Primer-CSS Primer-CSS Component Similar Reads Primer CSS Header Primer CSS is a free open-source CSS framework that is built upon a GitHub design system to provide support to the broad spectrum of GitHub websites. It creates the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are stead 3 min read Primer CSS Header-Item Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by 2 min read Primer CSS On hover Link Primer CSS is a free open-source CSS framework that is built upon the GitHub design system to provide support to the broad spectrum of Github websites. It creates the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are ste 2 min read Primer CSS Links Primer CSS is a free and open-source CSS framework. It is built upon the systems that create the foundation of the basic style elements such as spacing, typography, and colour. Created with GitHubâs design system, it is highly reusable and flexible.Primer CSS Links are used to decorate links in the 3 min read Primer CSS Select Menu Header Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by 2 min read Primer CSS Muted Link Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by 2 min read Primer CSS Nested Link Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by 2 min read Primer CSS Heading Utilities Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by 2 min read Primer CSS Lean Markup Primer CSS is a free open-source CSS framework that is built upon a GitHub design system to provide support to the broad spectrum of GitHub websites. It creates the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are stead 3 min read Primer CSS Markdown Primer CSS is a free open-source CSS framework built with the GitHub design system to support the broad spectrum of Github websites. It creates the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure that our patterns are steady and intero 3 min read Like