[Solved] how to move styling from HTML to CSS?
i just link .css file within header <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <link rel=”stylesheet” href=”mystyles.css”> <title>Document</title> </head> <body> <table> <thead style=”background-color: #427fef;”> <tr> <th>Country</th> <th>OrderID</th> <th>Order Amount</th> </tr> </thead> <tbody> <tr> <td>USA</td> <td>1000</td> <td>$1,300</td> </tr> <tr> <td>USA</td> <td>1001</td> <td>$700</td> </tr> <tr> <td>CA</td> <td>1002</td> <td>$2,000</td> </tr> <tr> … Read more