-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
57 lines (51 loc) · 1.47 KB
/
blog.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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body style = "margin: 0;
font-family: Arial, Helvetica, sans-serif;
width:100%;
height:66.67vh;
background:url('aqua.jpg');
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size:cover;
overflow:scroll;">
<div class="navbar">
<a class="active" href="index.html">Home</a>
<a href="about.html">About</a>
<a href="research.html">Research </a>
<a href="philosophy.html">Philosophy </a>
<a href="blog.html">Rambling </a>
</div>
<div class="row">
<div class="leftcolumn">
<div class="card">
<h2>TITLE HEADING</h2>
<h5>Title description, Dec 7, 2017</h5>
<div class="fakeimg" style="height:200px;">Image</div>
<p>
<input type=button onClick="location.href='index.html'" value='Read'>
</p>
</div>
<div class="card">
<h2>TITLE HEADING</h2>
<h5>Title description, Sep 2, 2017</h5>
<div class="fakeimg" style="height:200px;">Image</div>
<p>
<input type=button onClick="location.href='index.html'" value='Read'>
</p>
</div>
<div class="card">
<h2>TITLE HEADING</h2>
<h5>Title description, Sep 2, 2017</h5>
<div class="fakeimg" style="height:200px;">Image</div>
<p>
<input type=button onClick="location.href='index.html'" value='Read'>
</p>
</div>
</div>
</body>
</html>