-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (54 loc) · 2.53 KB
/
index.html
File metadata and controls
58 lines (54 loc) · 2.53 KB
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
<!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>Mini JS projects</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<section class="projects">
<div class="container projects__container">
<div class="projects__inner">
<h1 class="projects__title">
<span class="projects__span">JavaScript</span>
mini projects
</h1>
<p class="projects__desc">
Simple projects to improve my knowledge of JavaScript.
</p>
<a class="projects__link" href="https://github.com/CodingOnMars/js-mini-projects"
target="_blank">See on
GitHub</a>
</div>
<div class="projects__gallery gallery">
<a class="gallery__link" href="./time-traveler-counter/index.html" target="_blank">
<div class="gallery__wrapper">
<img class="gallery__img" src="images/year-counter.png" alt="Project image">
</div>
<h6 class="gallery__title">Time traveler counter</h6>
</a>
<a class="gallery__link" href="./color-switch/index.html" target="_blank">
<div class="gallery__wrapper">
<img class="gallery__img" src="images/color-switch.png" alt="Project image">
</div>
<h6 class="gallery__title">Random color palette generator</h6>
</a>
<a class="gallery__link" href="./random-card/index.html" target="_blank">
<div class="gallery__wrapper">
<picture>
<source srcset="images/random-card-cover.webp" type="image/webp">
<source srcset="images/random-card.png" type="image/png">
<img class="gallery__img" src="images/color-switch.png" alt="Project image">
</picture>
</div>
<h6 class="gallery__title">Random business card</h6>
</a>
</div>
</div>
</section>
</main>
</body>
</html>