question archive You can select a New website and select various news to be uploaded on your webpage with navigation bars, banner and footer on the bottom of the page
Subject:Computer SciencePrice:3.86 Bought6
You can select a New website and select various news to be uploaded on your webpage with navigation bars, banner and footer on the bottom of the page. You can add images or tables about your needs website and add Media Queries using CSS for Mobile, Tablet and Desktop all three for your webpage. Make sure your webpage look like News webpages with up to date content ( don't worry about feeding news or creating database).
you can make one html file for Mobile,Tablet and Desktop
Here is the HTML code for news webpage, you can apply the code and fetch the required output.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Skil Bar</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" type="text/css" href="css/style.css" /> </head> <body> <div class="container"> <div class="ticker"> <div class="title"><h5>Breaking News</h5></div> <div class="news"> <marquee> <p> "After the popularisation of print media in the late 18th Century, newspapers become a regular thing. The printing press brought with itself the advent of the era of information and knowledge. The easiest way to transfer information about what was happening around the world was the newspaper. Newspapers begin printing early in the morning and are distributed in a systematic manner." </p> </marquee> </div> </div> </div> </body> </html>