- Title
This is the name that is given to the page.
<title>Your Title Here</title>
- (Optional) Favicon To change the favicon, just replace the "favicon.ico" file. You can generate the .ico file in a website like favicon.io.
- Image
This is the user image that is shown. Make sure it is square and substitute the "src" property with its url. You can generate the url in a website like imgur.
<img id="userPhoto" src="https://i.imgur.com/t8ZX9um.jpg" alt="User Photo">
- Username
Your Instagram username. Change the "href" property with its url and add substitute the text with your @.
<a href="https://www.instagram.com/thesimpsons" id="userName"></h3>@thesimpsons</a>
- Links
To add your clickable links just substitute, delete or copy the "a" tags inside the "links" div with your desired hyperlinks.
<div id="links"> <a href="https://pt.wikipedia.org/wiki/Homer_Simpson" target="_blank">Wikipedia</a> <a href="https://foxplay.com/br/forme" target="_blank">IMDB</a> </div>
- Colors
Substitute the background and accent colors with your desired pallete.
--bgColor: white; --accentColor: #39e09b;
- Fonts
You can import the font from a website like Google Fonts and substitute the "--font" variable with its implementation.
@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap'); --font: 'Karla', sans-serif;