top of page

CSS Beginner (not tutorial)

Updated: Jul 4, 2020

1. Text color


A.

<style>
     .green-text {
          color: green;
}
</style>

<p class="green-text">AKU</p>

☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟


B.

<p style="color: red;">AKU</p>

☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟



2. Font size

<style>
     .font-size-20px {
		font-size: 20px;
}
</style>

<p class="font-size-20px">THIS IS 20PX</p>

☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟☟




3. font

<style>

.lobster-two-font {

font-family: Lobster-Two;

}

</style>


Males buat

 
 
 

Recent Posts

See All
Art

⠀⠀⠀⠀⠀⠀⠀.          ⠀⠀⠀✦ ⠀ ⠀              ⠀⠀⠀⠀⠀* ⠀⠀⠀.          . ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀✦⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀...

 
 
 

Comments


bottom of page