-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathillustration.html
51 lines (41 loc) · 1.39 KB
/
illustration.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Illustrations</title>
<meta name="author" content="">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="style.css" rel="stylesheet">
<style>
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fade-in {
opacity: 0;
animation: fadeIn 2s ease-in-out forwards;
}
</style>
</head>
<body>
<div class = "mydiv">
<img src ="logocelexia.png" class="hero-img">
<div class = "flex-container" >
<div class = "skibi"> <a href = "/illustration.html" style="text-decoration: none;">illustration</a> </div>
<div class = "skibi"> <a href = "/" style="text-decoration: none;"> about </a></div>
<div class = "skibi"> <a href = "https://ko-fi.com/celexia_artsss" style="text-decoration: none;"> shop </a></div>
</div>
</div>
<div class = "image-container">
<img src="sebkcharactersheet.png" class="gallery-item" alt="sebastian king character sheet">
<img src = "theaa.png" class="gallery-item" alt="rendered oc illustration">
<img src = "athenecharactersheet.png" class="gallery-item" alt="athena chen character sheet">
</div>
<script src="js/script.js"></script>
</body>
</html>