Change the logo by replacing the src of the image on line 14.
MinimalLandingPageTemplate/index.html
Line 14 in 07bbb76
Change the tile by replacing the text on line 6.
MinimalLandingPageTemplate/index.html
Line 6 in 07bbb76
To add a new link copy the folowing code and paste it into div#link-list
, so that the link is placed in the desired place.
<a href="" class="link-N icon">
<i class="fa-solid fa-vials"></i>
</a>
<a href="" class="link-N text">
<span class="title">Title</span> <span class="desc">Longer describtion</span>
</a>
Change the href
of both links to the desired location.
In the i
change the icon to be the desired Font Awesome icon.
Change the text in the spans with class title
and desc
to the desired text.
title
is the short description that is always displayed on mobile and colorful on desktop.
desc
is the longer description that is only displayed on desktop.
Add this code to the style section:
.link-N {
--col: #000;
}
Change the value of the --col
variable to the desired color of the icon.
You can change the N
in the class name to any desired text. Make sure to also adjust this class accordingly in the html you pasted previously.