-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
61 lines (55 loc) · 2.26 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>Sigvehtml</title>
<meta charset="utf8" />
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
</head>
<body>
<header>
<h1>Sigvehtml</h1>
</header>
<div class="container">
<div class="row">
<img src="elephant.png" />
</div>
<div class="row">
<div class="col-xs-9">
<p>
Did you know that any piece of code is likely to be read over a hundred times more often than is written?
Most of a developer's time is spent and trying to understand code.
Sigvehtml is a HTML dialect which focuses on readability and the ability to get a quick overview.
</p>
<p>
With sigvehtml, there is no longer any need to wade trough thickets of nested divs and spans and what-have-you's to get to a real understanding of what is going on.
Throw the boilerplate soup out of the window, and increase your productivity hundred-fold by re-writing all your code to sigvehtml.
You wont regret it.
</p>
<p>
Remember: you only need to rewrite to sigvehtml once.
And then you can read again and again and again, each time fully aware of what the finished output is going to look like.
The dark ages of web development is over!
</p>
</div>
<div class="col-xs-3">
<ul>
<li>
<a href="home">Home</a>
</li>
<li>
<a href="download">Download</a>
</li>
<li>
<a href="legal">Legal</a>
</li>
<li>
<a href="about-us">About Us</a>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>