-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathartworks.html
60 lines (56 loc) · 2.17 KB
/
artworks.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
<!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>Artworks</title>
<!-- css -->
<link rel="stylesheet" href="css/stylesa.css">
<!-- fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oleo+Script:wght@400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
</head>
<body>
<header>
<div class="container-fluid">
<nav>
<ul class="nav_links">
<li>
<a href="index.html">HOME</a>
<div class="line1"></div>
</li>
<li>
<a href="artworks.html">ARTWORKS</a>
<div class="line3"></div>
</li>
<li>
<a href="index.html #contactform">CONTACT</a>
<div class="line4"></div>
</li>
</ul>
</nav>
</div>
</header>
<section id="art">
<div class="arts">
<a href="trd.html">
<div class="show">
<img src="img/traditional.png" alt="" class="artwork">
<div class="txt1">TRADITIONAL</div>
<div class="txt2">ARTWORKS</div>
</div>
</a>
<a href="dgtl.html">
<div class="show">
<img src="img/digital.png" alt="" class="artwork">
<div class="txt3">DIGITAL</div>
<div class="txt4">ARTWORKS</div>
</div>
</a>
</div>
</section>
</body>
</html>