-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
32 lines (27 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="This is a landing page. You can get the free source from my github repo.">
<meta name="keywords" content="HTML, cheatsheet, codes landing page">
<meta name="author" content="Sagar Sharma">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="./public/style/style.css">
</head>
<body>
<div class="container">
<div class="time"></div>
<h1>
<span id="greeting"></span>
<span id="name" contenteditable="true">Sagar</span>
</h1>
<h2>What is Your Focus For Today?</h2>
<h2 id="focus" contenteditable="true">Coding</h2>
<br>
<button onclick="window.open('https://github.com/Sagar-Sharma-7/landing-page.github.io')">Get Source Code</button>
<button onclick="window.open('https://github.com/Sagar-Sharma-7')">Follow me on Github</button>
</div>
<script src="./public/js/main.js"></script>
</body>
</html>