-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (29 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Silent Thoughts On Web</title>
<link rel="stylesheet" href="/assets/css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Fondamento&family=Ubuntu:wght@400;500&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="/assets/images/favicon.png" type="image/x-icon" />
</head>
<body>
<section id="MyWritings">
<div class="container">
<div class="row">
<div class="col-md-6 herecomes">
<div class="button-group">
<button class="btn btn-default" type="submit" id="newQuote">More Writings</button>
<a href="#" class="btn btn-default" id="tweet">Tweet</a>
</div>
<div id="quotes_loc" class="well quotes">
<span class="quote">Welcome you! <br> Click on More Writings to start reading...</span>
</div>
</div>
</div>
</section>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src="/assets/js/main.js"></script>
</body>
</html>