One way to center a clickable hyperlink in HTML is to use the tag inside a
tag with “text-align:center” style1.
For example:
<p style="text-align: center;">
<a href="https://www.bing.com">This is a centered clickable link</a>
</p>
Another way is to use a list of links and style them with “text-align:center” and "display:inline-block"2.
For example:
<ul style="list-style-type:none;">
<li style="text-align:center; display:inline-block;">
<a href="https://www.bing.com">This is a centered clickable link</a>
</li>
</ul>
This one worked and tested in GitHub README.md:
<p align="center">
<a href="https://github.com/Pizofreude/github-profile-views-counter">
<img src="https://komarev.com/ghpvc/?username=Pizofreude">
</a>
</p>
GitHub-flavored Markdown (GFM) supports a variety of features for formatting README files, including some special callouts like "Warning" and "Note". Below is a list of commonly used Markdown features in GitHub READMEs that help you provide context, highlight important information, or organize your documentation:
1. Basic Formatting
#
,##
,###
, etc.**bold**
or__bold__
*italic*
or_italic_
~~strikethrough~~
> blockquote
-
,*
,+
1.
,2.
, etc.`code`
[link text](url)

2. Tables
3. Task Lists
4. Emoji
:smile:
,:warning:
, etc.5. Mentioning Users/Teams/Issues/PRs
@username
,#123
,owner/repo#456
6. HTML Elements
HTML tags like
<details>
,<summary>
,<kbd>
,<sup>
,<sub>
,<br>
, etc., are supported for advanced formatting.7. Admonitions (Notes, Warnings, Tips, etc.)
GitHub does not natively support Markdown admonitions (e.g., "note", "warning") like some other platforms (such as Docsify, MkDocs, or Docusaurus).
However, you can manually create these using:
Blockquotes with emoji or bolded text:
Custom HTML blocks:
You can use raw HTML for custom callout formatting:
8. Collapsible Sections
9. Footnotes
GitHub supports footnotes:
10. Syntax Highlighting
Code blocks with language identifiers for syntax highlighting, e.g.:
In summary: