-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (47 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="images/headerlogo.png" type="image/x-icon">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Roboto+Mono:wght@400;700&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<link rel="stylesheet" href="stylesheets/index.css">
<link rel="stylesheet" href="stylesheets/style.css">
<script defer src="logic/index.js"></script>
<title>Koko - Text Broadcast Application</title>
<meta name="description" content="A text broadcast social media platform to share your thoughts and opinions.">
<meta name="keywords" content="Koko, college, mini projects, python projects, javascript projects, node js projects">
<meta name="author" content="Aryan Nagar">
</head>
<body>
<!-- header -->
<header>
<nav>
<div>
<img src="images/headerlogo.png" alt="Header Logo">
<h1>KOKO</h1>
</div>
<button onclick="window.location.href='account.html'">Account</button>
</nav>
</header>
<!-- content -->
<div id="parent-content-box">
<div id="content-box">
<div id="content-box-spanholder">
<span id="content-box-spanholder-name">John Doe</span>
<span id="content-box-spanholder-date">20 Oct</span>
</div>
<p id="content-box-para">Lorem ipsum dolor sit, amet consectetur adipisicing.</p>
</div>
</div>
<!-- input wrapper -->
<div id="parent-input-wrapper">
<div id="input-wrapper">
<input id="input-wrapper-input" type="text" placeholder="Make a statement ..">
<button id="input-wrapper-button"><span class="material-symbols-rounded">arrow_upward</span></button>
</div>
</div>
</body>
</html>