Archived topic
Make the Font Bigger
1 reply · Started by Luke on November 21, 2022
Viewing posts 1–2 of 2
Hi
I'd like to make the font of the text below bigger, but I don't know how to do it in a code like this. Can you tell me what I need to add in this line of code to make the font bigger?
<center><a href="site.com" rel="noopener nofollow" target="_blank"><strong>Click Here to Download </strong></a></center>
Hi there,
i would use this HTML:
<a class="my-custom-link" href="site.com" rel="noopener nofollow" target="_blank">Click Here to Download</a>
This adds the <code>my-custom-link</code> CSS Class to it, you can change that for something more appropriate if you need.
Then add some CSS to your site:
.my-custom-link {
text-align: center;
font-weight: 700;
font-size: 20px;
}`
This archived topic is closed to new replies.