-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
164 lines (161 loc) · 6.25 KB
/
index.html
File metadata and controls
164 lines (161 loc) · 6.25 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!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">
<script src="https://kit.fontawesome.com/acbe49dba1.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./dist/styles.css">
<title>Evocative ArtWorks</title>
</head>
<body>
<!--Header-->
<header class="img-header-index">
<!--Navigation-->
<div id="header-bar">
<ul>
<li class="header-bar-icon"><a href="#"><i class="fa-brands fa-facebook-f"></i></a></li>
<li class="header-bar-icon" id="twiter"><a href="#"><i class="fa-brands fa-twitter"></i></a></li>
<li class="header-bar-link"><a href="#">English</a></li>
<li class="header-bar-link"><a href="#">My page</a></li>
<li class="header-bar-link"><a href="#">Logout</a></li>
</ul>
</div>
<nav>
<ul id="nav-bar">
<li class="nav-icon-toggle">
<a href="#" aria-label="Navigation menu icon">
<i class="fa-solid fa-bars"></i>
</a>
</li>
<li>
<a href="index.html" id="logo"><img src="./images/LOGO.png" alt="Evocative ArtWorks"></a>
<ul id="mobile-menu">
<li class="menu-option">
<a href="about.html">About us</a>
</li>
<li class="menu-option">
<a href="#artists">Artists</a>
</li>
<li class="menu-option">
<a href="#sponsors">Sponsors</a>
</li>
<li id="option-square" class="menu-option">
<a href="about.html#featured-exhibitions">Exhibitions</a>
</li>
</ul>
</li>
</ul>
</nav>
<!--Headline section-->
<section id="headline">
<div class="div-container">
<h2>"Welcome to the art!"</h2>
<h1>EVOCATIVE ARTWORKS EVENTS PAGE 2022</h1>
<div class="intro-p">
<p>A free space, a blank canvas where you can express your mind, your body and your spirit through
art.
Where you can find just the art you love.
</p>
</div>
<h3>Open daily from 9:00 to 6:00</h3>
<p>1201 Cotton Alley</p>
</div>
</section>
</header>
<!--Main-->
<main>
<!--Art genre section-->
<section id="art-genres">
<div class="div-container">
<h2>Art genres</h2>
<hr>
<ul>
<li>
<i class="fa-solid fa-camera"></i>
<h4>Photography</h4>
<p>Images of conceptual and aesthetic value with the photographic camera.</p>
</li>
<li>
<i class="fa-solid fa-pen-ruler"></i>
<h4>Sculpture</h4>
<p>Relief, round sculpture and kinetic sculpture.</p>
</li>
<li>
<i class="fa-solid fa-palette"></i>
<h4>Painting</h4>
<p>Combines elements of plastic representation to convey an aesthetic experience.</p>
</li>
<li>
<i class="fa-solid fa-eye"></i>
<h4>Visual arts</h4>
<p>Conceptualization and projection of visual communication objects.</p>
</li>
<li>
<i class="fa-solid fa-book"></i>
<h4>Cartoon</h4>
<p>Graphic-narrative art that tells stories through sequences of images</p>
</li>
</ul>
<button class="orange-btn" type="button">Learn more</button>
</div>
</section>
<!--Artist section-->
<section id="artists">
<div class="div-container">
<h2>Artists</h2>
<hr>
<ul id="artists-ul">
<!--Dinamic content by Javascript -->
</ul>
<div id="more">
MORE
<i id="more-icon" class="fa-solid fa-angle-down"></i>
</div>
</div>
</section>
<!--Sponsor section-->
<section id="sponsors">
<div class="div-container">
<h2>Sponsors</h2>
<hr>
<ul id="sponsors-ul">
<li>
<i class="fa-brands fa-cc-visa"></i>
</li>
<li>
<i class="fa-brands fa-gg"></i>
</li>
<li>
<i class="fa-brands fa-instagram"></i>
</li>
<li>
<i class="fa-brands fa-cc-paypal"></i>
</li>
<li>
<i class="fa-brands fa-buy-n-large"></i>
</li>
</ul>
</div>
</section>
</main>
<!--Footer-->
<footer>
<!--License section-->
<div id="license-container-index" class="div-container">
<div class="cc-logo">
<img src="./images/cc-black.png" alt="Creative Commons logo" />
</div>
<div class="license-text">
<p>2022 Creative Commons. Some Rights Reserved.</p>
<p id="desp-lincense">This work is licensed under a Creative Commons Attribution-NonCommercial 4.0
International
License.</p>
</div>
</div>
</footer>
<!--Add script files-->
<script src="./app/js/main.js"></script>
<script src="./app/js/menu.js"></script>
</body>
</html>