Website Design & Development

CSS Tutorial 2

CSS Tutorial 2

CSS Tutorial 2 <!DOCTYPE html> <html> <head> <title>css tutorial 2</title> <link rel=”icon” href=”./icon/9.png”> <link rel=”stylesheet” href=”./css/app.css”> </head> <body> <h1>background </h1> <h2>background color </h2> <h3>background image </h3> <h4>background repeat </h4> <h5>background attachment </h5> <h6>background position</h6> </body> </html> app.css body {  background-color: gray; }   *{ color: white; height:150px; margin:10px; }   …

Read More »