-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (36 loc) · 1.97 KB
/
index.html
File metadata and controls
44 lines (36 loc) · 1.97 KB
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
<!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>NBU Student Council Candidates</title>
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="index.js" defer></script>
</head>
<body>
<div class="main-container">
<div class="applicant-list">
<h2>Кандидати</h2>
</div>
<div class="applicant-details">
<div class="placeholder">
<img src="images/ss-logo.png" alt="">
<p>Моля изберете кандидат от списъка<br>за да разгледате неговата кандидатура.</p>
</div>
<div class="info">
<img src="" alt="" class="image" onerror="this.src='images/default.jpg'">
<h1 class="name"></h1>
<h3 class="program"></h3>
<h4>Мотивация:</h4>
<h6>Какво Ви накара да се кандидатирате за студентски представител, кои са Вашите сфери на интерес и как смятате да бъдете полезен за студентската общност, защо студентите да изберат Вас?</h6>
<p class="motivation"></p>
<h4>Допълнителни детайли:</h4>
<h6>Посочете вашите умения и компетенции, които смятате, че ще Ви бъдат полезни в работата като студентски представител.</h6>
<p class="details"></p>
</div>
</div>
</div>
</body>
</html>