-
Notifications
You must be signed in to change notification settings - Fork 0
/
artworks.html
74 lines (63 loc) · 2.16 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!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">
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@200&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,300;0,400;0,700;1,100&family=Oswald:wght@200&display=swap" rel="stylesheet">
<style>
.body{
background-image: url("img1.jpg");
}
.header{
color:black; margin-top: 0px; margin-bottom: 0px; width: 1400px;
}
.header ul{
overflow: auto;
}
.header li{
float: left; list-style: none;
margin: 20px 20px; font-family: 'Josefin Sans', sans-serif;
}
.header li a{
text-decoration: none;
color: black;
}
.column {
flex: 50%;
padding: 0 20px;
}
.column img {
margin-top: 8px;
margin-left: 17px;
vertical-align: middle;
}
.heading{
font-family: 'Oswald', sans-serif; font-size: 40px; text-align: center;
}
</style>
<title>Artworks</title>
</head>
<body>
<div class="header">
<ul>
<li><a href="index.html">Home</a></li>
<!-- <li><a href="#">Projects</a></li> -->
<li><a href="artworks.html">Designs</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="heading">
<h2>MY ARTWORKS</h2>
</div>
<div class="column">
<img src="img3.png"width="400px" height="500px">
<img src="img4.png"width="500px" height="500px">
<img src="img1.png"width="500px" height="500px">
<img src="img5.png" width="700px" height="700px">
<img src="img2.jpg" width="700px" height="700px">
</div>
</body>
</html>