-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (86 loc) · 3.03 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="icon" href="./img/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon" />
<title>JavaScript</title>
</head>
<body>
<!-- header -->
<header id="header"> </header>
<!-- parallax -->
<section>
<h2 id="text"><span>It's time to enjoy</span><br />JavaScript</h2>
<img src="./img/clouds.png" alt="Clouds" id="clouds" />
<img src="./img/sun.png" alt="Sun" id="sun" />
<img src="./img/bird1.png" alt="Bird 1" id="bird1" />
<img src="./img/bird2.png" alt="Bird 2" id="bird2" />
<img src="./img/forest.png" alt="Forest" id="forest" />
<a href="#container" id="btn">Explore</a>
<img src="./img/rocks.png" alt="Rocks" id="rocks" />
<img src="./img/water.png" alt="Water" id="water" />
<img src="./img/fish.png" alt="Fish" id="fish" />
</section>
<!-- main content -->
<div class="container" id="container">
<h2>JavaScript Projects</h2>
<!-- project-1 -->
<div class="project project-1">
<a href="./1.todo/index.html" alt="Project 1">
<img src="./1.todo/img/todo.png" alt="Project 1"
/></a>
<p>1. Todo list</p>
</div>
<!-- project 2 -->
<div class="project project-2">
<a href="./2.beatmaker/index.html" alt="Project 2">
<img src="./2.beatmaker/img/beat.png" alt="Project 2"
/></a>
<p>2. Beatmaker</p>
</div>
<!-- project 3 -->
<div class="project project-3">
<a href="./3.colors/index.html" alt="Project 3">
<img src="./3.colors/img/colors.png" alt="Project 3"
/></a>
<p>3. Colors</p>
</div>
<!-- project 4 -->
<div class="project project-4">
<a href="./4.travels/index.html" alt="Project 4">
<img src="./4.travels/img/travels.png" alt="Project 4"
/></a>
<p>4. Travels</p>
</div>
<!-- project 5 -->
<div class="project project-5">
<a href="./5.photon/index.html" alt="Project 5">
<img src="./5.photon/img/photon.png" alt="Project 5"
/></a>
<p>5. Photon</p>
</div>
<!-- footer -->
<footer>
© 2021 by
<a target="“_blank”" href="https://github.com/AntonRufus">
Anton Zhyvotovskyi
</a>
</footer>
</div>
<!-- script -->
<script type="text/javascript" src="./index.js"></script>
</body>
</html>