-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (97 loc) · 4.71 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Practical Work 15</title>
<link rel="stylesheet" href="css/style.css" />
<script type="module" src="./js/script.js"></script>
</head>
<body>
<header>
<div class="header-wrapper__container">
<div class="logo__container">
<img src="images/logo.png" class="logo__img" />
<!-- who forgot to turn on the light 👨🏿🔧 -->
<div class="logo-label__container">
<h1 class="name-logo__h1"><a href="./index.html">프리카르파티아 국립 대학교</a></h1>
<div class="family-logo__container">
<img src="images/pnu-logo.png" alt="family logo img" class="family-logo__img" />
<span class="name-family-logo__span">Progressive Nurturing Unity</span>
</div>
</div>
</div>
<div class="icon-menu">
<span></span>
</div>
<div class="nav__container">
<nav class="body-menu">
<ul>
<li><a class="main__link active" href="./index.html"><p>Main</p></a></li>
<li><a class="catalog__link" href="./pages/catalog.html"><p>Catalog</p></a></li>
<li><a class="about__link" href="./pages/about.html"><p>About</p></a></li>
<li><a class="awards__link" href="./pages/awards.html"><p>Awards</p></a></li>
</ul>
</nav>
<div class="number__container">
<a class="number__link" href="tel:(555)555-44-55">(555)555-44-55</a>
<p>Contact us</p>
</div>
</div>
</div>
</header>
<main>
<div class="main-wrapper__container">
<div class="number__container">
<a class="number__link" href="tel:(555)555-44-55">(555)555-44-55</a>
<p>Contact us</p>
</div>
<div class="content__container">
</div>
</div>
</main>
<footer>
<div class="footer-wrapper__container">
<div class="footer__container">
<div class="info__container">
<div class="work-time__container">
<p>Hours:</p>
<p>We don't work, because Tsyependya doesn't pay money us.</p>
</div>
<div class="adress__container">
<p>Adress:</p>
<p>
Somewhere near
<a target="_blank" href="https://slovnyk.ua/index.php?swrd=пну"
>PNU</a
>
</p>
</div>
<div class="additional-info__container">
<p>Help me pls🙏</p>
<p>
Join Afelle on thrilling adventures through the enchanting world of
<a target="_blank" href="https://slovnyk.ua/index.php?swrd=пну"
>PNU</a
>! From delving into ancient ruins to braving mystical forests,
every moment is an exhilarating escapade. Together, you'll unravel
the secrets of this magical realm, encountering fantastical
creatures and overcoming daring challenges along the way. With
Afelle as your guide, the journey promises excitement, discovery,
and unforgettable memories waiting to be made.
</p>
</div>
</div>
<div class="copyright__container">
<p>
© Whoever copies this work will become a fullstackoverflow php developer
in
<a target="_blank" href="https://slovnyk.ua/index.php?swrd=пну">PNU</a>
forever
</p>
</div>
</div>
</div>
</footer>
</body>
</html>