-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Media Scolara</title>
<link rel="stylesheet" href="./styles/style.css" />
<link rel="icon" href="./assets/icon.png" />
</head>
<body>
<header>
<h1>Media Scolara</h1>
</header>
<main>
<p>Aplicatie web pentru a calcula media notelor</p>
<section class="input">
<input type="number" class="input-grade" />
<section class="buttons">
<button class="btn add">Adauga nota!</button>
<button class="btn delete">Sterge note!</button>
</section>
</section>
<section class="display">
<p><span class="grades"></span></p>
<p class="final">
Media finala este: <span class="final-grade">0</span>
</p>
<p><span class="passed"></span></p>
</section>
</main>
<footer>
<a href="github.com/RegusAl">RegusAl ©2021</a>
</footer>
<script src="./script.js"></script>
</body>
</html>