-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (69 loc) · 3.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
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
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple blog</title>
<link rel="stylesheet" href=style.css>
</head>
<body>
<header id="blog"><h1>Simple blog</h1></header>
<nav>Sharing simple thoughts :D </nav>
<main>
<!--Template - you can delete that-->
<article class="main">
<article class="sub">
<p class="date" aria-label="Date of creation of the article">dd.mm.YYYY</p>
<header class="title" aria-label="Title of the article"><h2>-Your title-</h2></header>
<p class="author" aria-label="Author of the article">Your name/nickname</p>
<div class="content" aria-label="Content"><p>Here goes your text. You can tell us about your yesterday's trip to local cinema or you can describe your favourite book :D</p><p>Feel free to share your thoughts!</p></div>
<footer class="bottomContent">
<section class="tags" aria-label="Tags">
<ul>
<li>excellent</li>
<li>interesting</li>
<li>tags</li>
</ul>
<button type="button" class="commenting" aria-label="Comment">Add your comment</button>
</section>
</footer>
</article>
<aside class="comments" aria-label="Comments">
<p class="author">Comments</p>
<ul>
<li>
<p class="author" aria-label="Comment author">Author</p>
<p class="comment" aria-label="His comment">His very very very long comment. He has so much to tell you. Maybe he is your fan? Well, you need to ask him :D</p>
</li>
<li>
<p class="author" aria-label="Comment author">Jelly</p>
<p class="comment" aria-label="His comment">Hi there</p>
</li>
<li>
<p class="author" aria-label="Comment author">Your_fan4</p>
<p class="comment" aria-label="His comment">I love you!</p>
</li>
<li>
<p class="author" aria-label="Comment author">Coffe_Guy</p>
<p class="comment" aria-label="His comment">I like coffe</p>
</li>
</ul>
</aside>
</article>
<!--Template - you can delete that-->
</main>
<article id="addComBack">
<section id="addCom">
<span class="close" id="close" aria-label="Close button">×</span>
<p aria-label="Add your comment">Your comment</p>
<form id="comment-form">
<textarea id="comment" name="comment" required aria-label="Your comment" maxlength ="255"></textarea>
<input type="text" id="username" name="username" placeholder="Your name/nickname" required aria-label="Your name or nickname" maxlength ="9">
<button type="submit" aria-label="Submit">Submit</button>
</form>
</section>
</article>
<footer id="madeby" aria-label="Website author">-Kacper Twardowski | 2024-</footer>
<script src="script.js"></script>
</body>
</html>