--lightgray:#f8f9fa --white : #fff

font-family: 'Lato', sans-serif;

Hello World

hello world

hello world

hello world

hello world
hellow world

Landing page</a

<style> /* text-align:center is basic style to center the text */ /* we can also use text-align:left, text-align:right to position element */ /* to specify size we use font-size property */ /* font size can be used in pixels,rem or em 1rem = 16px 1em = 16px, it is good practice to use rem or em */ /* color property gives color to element */ /* it is always good practice to use classnames in order to target them in css */ /* classneames are selected using . in css */ /* another property is font-weight */ /* there are 3 attributes to font weight bol,bolder,normal but heading ususally are in bold */ /* text-transform: capitalize; capitalize the element */ .heading-3 { text-align: center; font-size: 30px; color: red; font-weight: normal; text-transform: uppercase; } /* these are few styles we will learn more while developing */ </style>