-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (32 loc) · 1.27 KB
/
index.html
File metadata and controls
41 lines (32 loc) · 1.27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Welcome to Wally</title>
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="container">
<h1 style="font-size:10vw">Hello World!</h1>
<div class="row">
<div class="one-third column" style="background-color: aqua;">News</div>
<div class="one-third column">Contents</div>
<div class="one-third column" style="background-color: aqua;">About</div>
</div>
<p>Stay tuned for more information.</p>
<p>Send me email to know more.</p>
<p>Jack</p>
<pre>
<code>
print("Hello World")
</code>
</pre>
</div>
</body>
</html>