-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 1.24 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="main.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h2>My HTML5 playground</h2>
<div class="row">
<p class="col-12 col-s-12">This page does not serve any purpose. It is only used by me
to play around with some HTML and CSS. Most of the things I've done on the web so far
were based on CMS systems or frameworks like Bootstrap. This time, I want to see what
I can achieve and do when I do everything from scratch. Therefor, don't expect too much
fancy content to pop up on this page.
<br>
But some things I want to do:
<ol type="1">
<li>Keep the source easy to read, so everybody who is interested can read it easily.</li>
<li>Make the page responsive, so it scales to the size of your display. It should work from
feature phones to 4K displays.</li>
<li>Only use open web technologies - no Flash, Air or Silverlight.</li>
<li>Be standard-compliant. :)</li>
</ol>
So if you see anything on this page that is not working or could be solved in a better way, please
let me know, I'm willing to learn the best practices.
</p>
</div>
<div class="row">
<p class="footer col-12">This is the footer.</footer>
</div>
</body>
</html>