-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.html
152 lines (141 loc) · 4.43 KB
/
work.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ELCHE fine art</title>
<link href="css/main.css" rel="stylesheet" type="text/css" media="screen" >
</head>
<body>
<div class="container">
<h1 class="hidden">ELCHE fine art</h1>
<header class="mainHeader">
<div class="logoHeader">
<a href=index.html>
<img src="images/logo_white.png" alt="ELCHE fine art logo" width="170" height="65" id="logo">
</a>
</div>
<nav class="mainNav">
<h2 class="hidden">Main Navigation</h2>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="work.html">WORK</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</nav>
</header>
<main>
<div class="contentWork">
<section class="aboutBackground">
<h2 class="hidden">aboutBackground</h2>
<section class="about">
<h2 >ABOUT</h2>
</section>
</section>
<hr class="line">
<div class="workPart">
<section id="artist_photo">
<h2 class="hidden">Artist</h2>
<img src="images/artist_photo.jpg" alt="The artist_photo" width="450" height="658">
</section>
<section class="blogBackground">
<h2 class="hidden">blogBackground</h2>
<section id="blog">
<h2 class="hidden">Welcome to my site!</h2>
<p>Welcome to my site!</p>
<p>My name is Elena Chechulina.</p>
<p>I am an artist whose main focus is academic drawing and painting. I love the work of impressionist artists, inspired by the stories and impressions of friends.
The main types of my work are made in pencil technique, pastels and oil paints.
You can get acquainted with my creative works on this site in the Gallery section.</p>
<p>Enjoy!</p>
</section>
</section>
</div>
<section class="galleryBackground">
<h2 class="hidden">galleryBackground</h2>
<section id="Gallery">
<h2 >GALLERY</h2>
</section>
</section>
<hr class="line">
<div class="album">
<section class="firstPic">
<h2 class="hidden">firstPic</h2>
<section id=botles>
<h2 class="hidden">botles</h2>
<img src="images/pencil.jpg" alt="Pencil" width="344" height="457">
</section>
<section class="pencilBackground">
<h2 class="hidden">pencilBackground</h2>
<section class="button">
<a href="#"><h3>Pensil</h3></a>
</section>
</section>
</section>
<section class="secondPic">
<h2 class="hidden">secondPic</h2>
<section id=lion>
<h2 class="hidden">Lion</h2>
<img src="images/lion.jpg" alt="lion" width="423" height="348">
</section>
<section class="pastelBackground">
<h2 class="hidden">pastelBackground</h2>
<section class="button">
<a href="#"><h3>Pastel</h3></a>
</section>
</section>
</section>
<section class="thirdPic">
<h2 class="hidden">thirdPic</h2>
<section id=portugal>
<h2 class="hidden">Portugal</h2>
<img src="images/portugal.jpg" alt="portugal" width="340" height="457">
</section>
<section class="oilBackground">
<h2 class="hidden">oilBackground</h2>
<section class="button">
<a href="#"><h3>Oil</h3></a>
</section>
</section>
</section>
</div>
</div>
</main>
<footer class="mainFooter">
<div class="logoFooter">
<a href="index.html">
<img src="images/logo_white.png" alt="ELCHE fine art logo" width="140" height="53" id="logoFooter">
</a>
</div>
<nav class="footerNav">
<h2 class="hidden">Footer Navigation</h2>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="work.html">WORK</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</nav>
<div class="socialMedia">
<h2 class="hidden">Social Media</h2>
<ul id="iconNav">
<li id="facebook">
<a href="http://www.facebook.com">
<img src="images/facebook.png" alt="facebook">
</a>
</li>
<li id="instagram">
<a href="http://www.instagram.com">
<img src="images/instagram.png" alt="instagram">
</a>
</li>
</ul>
</div>
<div class="copyrights">
<h2 class="hidden">Copyrights</h2>
<img src="images/copyright.png" alt="copyright" id="copy">
<h3>Copyright 2020 ELCHE Fine Art - All rights reserved.</h3>
</div>
</footer>
</div>
</body>
</html>