-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (34 loc) · 1.03 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
<!DOCTYPE html>
<html lang="fa">
<head>
<meta charset="UTF-8" />
<title>AviNotes</title>
<link href="assets/css/style.css" rel="stylesheet" />
</head>
<body>
<header class="header">
<nav class="header-nav">
<h2>دفترچه یادداشت</h2>
</nav>
</header>
<nav class="nav">
<section>
<h4>یادداشت خود را وارد نمایید</h4>
<form action="#" id="form">
<input type="text" id="txtTitle" placeholder="موضوع یادداشت" ></input>
<textarea id="contentText" placeholder="متن یادداشت" cols="50" rows="6"></textarea>
<button id="submit" name="submit">ثبت</button>
</form>
</section>
</nav>
<main class="main">
<article class="article">
<h2>نمایش یادداشت ها</h2>
</article>
</main>
<footer class="footer">
<p>طراحی شده توسط علی چترایی</p>
</footer>
<script src="assets/js/app.js"></script>
</body>
</html>