Semantics, readability and updated structure

Changed HTML structure to a more concise and modern one, added Roboto font definition from Google Fonts
This commit is contained in:
Firebrand 2018-08-09 14:04:45 +07:00 committed by GitHub
parent 0fb6c0386f
commit 39f22f4f03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 31 additions and 21 deletions

View File

@ -1,24 +1,34 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head>
<meta charset="utf-8"> <head>
<meta name="viewport" content="width=device-width">
<title>New Tab</title> <meta charset="utf-8">
<link href="index.css" rel="stylesheet" type="text/css" /> <meta name="viewport" content="width=device-width">
</head>
<body> <title>New Tab</title>
<center>
<br><br><br><br> <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<h1 class="time"> <link href="index.css" rel="stylesheet">
<div id="timemsg"></div>
</h1> </head>
<h2 class="greeting">
<div id="greetingmsg"></div> <body>
</h2>
<br><br><br><br><br><br><br><br><br><br> <div class="greeting"></div>
<h3 class ="quote">
<div id="quotemsg"></div> <div class="time"></div>
</center>
</body> <div class="quote">
<script src="index.js"></script>
<div class="text"></div>
<span class="author"></span>
</div>
</body>
<script src="index.js"></script>
</html> </html>