-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="cSection.css">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Comments section</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap" rel="stylesheet">
</head>
<body>
<main class="main" id="main">
<div id="comments-container"></div>
<div class="main-bottom">
<img src="images/avatars/image-juliusomo.png" alt="avatar" class="avatar avatarCreate">
<textarea id="textarea" class="textarea" placeholder="Add a comment..."></textarea>
<button class="send" id="send">send</button>
</div>
<div class="marginBottom"></div>
</main>
<script src="cSection.js"></script>
</body>
</html>