-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
214 lines (198 loc) · 7.6 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
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!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>Bleu Art</title>
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.min.css">
<link rel="icon" href="images/icon.png">
</head>
<body>
<!-- NAVBAR -->
<nav class="navbar fixed-top navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">Bleu-Art</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#art-categories">Art Categories</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#photo-gallery">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about-artist">About artist</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- JUMBOTRON -->
<div class="jumbotron">
<div class="jumbotron__box">
<img class="img-jumbotron img-fluid" src="images/jumbotron.png" alt="Bleu">
</div>
<div class="jumbotron__area" >
<ul class="jumbotron__area-circles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div >
</div>
<!-- SOCIAL NETWORKS -->
<div class="social-networks">
<a href="https://www.deviantart.com/bluedokk" target="blank">
<div class="layer">
<span></span>
<span></span>
<span></span>
<span></span>
<span class="icon fab fa-deviantart"></span>
</div>
<div class="text">DeviantArt</div>
</a>
<a href="https://www.instagram.com/bluedokk/?hl=es-la" target="blank">
<div class="layer">
<span></span>
<span></span>
<span></span>
<span></span>
<span class="icon fab fa-instagram"></span>
</div>
<div class="text">Instagram</div>
</a>
<a href="https://api.whatsapp.com/send?phone=573217555792" target="blank">
<div class="layer">
<span></span>
<span></span>
<span></span>
<span></span>
<span class="icon fab fa-whatsapp"></span>
</div>
<div class="text">WhatsApp</div>
</a>
</div>
<section id="home" class="container section-page">
<h2 class="titles">Welcome</h2>
<hr class="horizontal-line">
<p class="paragraph">Welcome to the world of Bleu. Immerse yourself in the lines made by the artist Bleu (Javier Velasquez) and get to know his experience in this field. His illustrations are based on the people in his environment and his perception of them. This is just a sample, a brushstroke of his art. To see more of his illustrations follow him on his social networks.</p>
</section>
<!-- CATEGORIES -->
<section id="art-categories" class="container section-page">
<h2 class="titles">Art Categories</h2>
<hr class="horizontal-line">
<div class="categories row">
<div category="digital" class="box">
<div class="imgBx" category="digital">
<img src="images/cards/1-min.jpg" alt="Image - Digital" category="digital">
</div>
<div class="content" category="digital">
<h2 category="digital">DIGITAL<br> <span category="digital">Magic pixels</span></h2>
</div>
</div>
<div category="caricatures" class="box">
<div class="imgBx" category="caricatures">
<img src="images/cards/2-min.jpg" alt="Image - Caricatures" category="caricatures">
</div>
<div class="content" category="caricatures">
<h2 category="caricatures">CARICATURES<br> <span category="caricatures">Fun pixels</span></h2>
</div>
</div>
<div category="traditional" class="box">
<div class="imgBx" category="traditional">
<img src="images/cards/3-min.jpg" alt="Image - Traditional" category="traditional">
</div>
<div class="content" category="traditional">
<h2 category="traditional">TRADITIONAL<br> <span category="traditional">Classic</span></h2>
</div>
</div>
</div>
<div class="category-description row">
<h2 id="category-title">Select a category</h2>
<p id="category-description" class="paragraph"></p>
</div>
</section>
<section id="photo-gallery" class="container section-page">
<h2 class="titles">PHOTO GALLERY</h2>
<hr class="horizontal-line">
<div class="row gallery">
<ul class="gallery__group row">
</ul>
</div>
</section>
<section id="about-artist" class="container section-page">
<h2 class="titles">ABOUT ARTIST </h2>
<hr class="horizontal-line">
<div class="about row">
<img src="images/artist.png" alt="artist.png" class="col-xl-4 col-lg-4 col-md-4 offset-lg-1 offset-xl-0 col-sm-12 offset-md-0 offset-sm-0">
<P class="paragraph col-xl-8 col-lg-7 col-md-8 col-sm-12">
Name: Javier Velasquez<br>
Age: 27<br>
Profession: Electronic Engineer<br>
University: Surcolombiana University<br>
Country: Colombia <br>
Hometown: Neiva (Huila)<br>
</P>
</div>
</section>
<footer id="contact" class="footer text-white text-center text-lg-start">
<hr class="horizontal-line">
<div class="container p-4">
<div class="row">
<div class="col-lg-8 col-md-12 mb-3 mb-md-0 order-1 order-sm-1">
<h5 class="text-uppercase">Website - BLEU ART</h5>
<p>
<i>Website with samples of the artist Bleu. Digital art, caricatures and traditional art.</i>
</p>
<p>
Content made by engineer Javier Velasquez.<br>
Design and implementation of the site by engineer Javier Velasquez.
</p>
</div>
<div class="col-lg-4 col-md-12 mb-4 mb-md-0 text-center order-3 order-sm-2">
<h5 class="text-uppercase mb-0">Contact</h5>
<ul class="contact-list list-unstyled">
<li>
<br>
<a href="mailto:[email protected]?subject=BLEU%20WEBSITE" class="text-white">Email: [email protected]</a>
</li>
<li>
<p>Celular: +57 321 755 5792<br>Neiva-Huila (Colombia)</p>
</li>
</ul>
</div>
</div>
</div><!-- Container footer -->
<!-- Copyright -->
<div class="box-over text-center p-3">
<p>© 2021 Copyright: Javier Velasquez</p>
</div>
<!-- Copyright -->
</footer>
<script src="js/all.min.js"></script>
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/script.min.js"></script>
</body>
</html>