Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 1.79 KB

readme.md

File metadata and controls

50 lines (43 loc) · 1.79 KB

Standard Template

Website

alt text

How to Use

index.html

  1. Title This is the name that is given to the page.
    <title>Your Title Here</title>
    
  2. (Optional) Favicon To change the favicon, just replace the "favicon.ico" file. You can generate the .ico file in a website like favicon.io.
  3. 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">
    
  4. 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>
    
  5. 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>
    

style.css

  1. Colors Substitute the background and accent colors with your desired pallete.
    --bgColor: white;
    --accentColor: #39e09b;
    
  2. 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;