Including styles
<body>
<!-- USING INLINE STYLING -->
<h1 style="color: red;">Hello World</h1>
<button style="color: white; background-color:black;">submit</button>
</body><!DOCTYPE html>
<html lang="en">
<head>
<!-- USING STYLE TAG -->
<style>
h1{
color: red;
background-color: black;
}
button{
color: aqua;
background-color: wheat;
}
</style>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Hello World</h1>
<button>Submit</button>
</body>
Comments
Post a Comment