-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (69 loc) · 2.78 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
<!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>JS Game Development</title>
</head>
<style>
body {
background-image: url('assets/night-background.png');
background-position: center;
background-attachment: fixed;
background-size: cover;
color: lightgrey;
margin-left: 26px;
font-family: Segoe UI;
}
.game-section a {
color: darkgrey;
font-size: 18px;
font-family: Segoe UI;
text-decoration: none;
font-weight: bold;
}
.game-section a:hover {
text-decoration: underline;
}
#heading {
font-weight: 800;
margin-bottom: 40px;
}
.game-section {
font-weight: 700;
margin-bottom: 24px;
}
.section-heading {
font-weight: 700;
font-size: 25px;
}
.sub-sections {
line-height: 35px;
font-size: 18px;
font-weight: 700;
margin: 10px auto 22px 20px
}
</style>
<body>
<h1 id="heading"> Game Development - JavaScript & HTML & CSS </h1>
<div class="game-section">
<span class="section-heading">ShadowDogAnimation - </span> 
<a href="https://bevatsal1122.github.io/JS-GameDev/ShadowDogAnimation/">https://bevatsal1122.github.io/JS-GameDev/ShadowDogAnimation/</a>
</div>
<div class="game-section">
<span class="section-heading">ParallaxBackgrounds - </span> 
<a href="https://bevatsal1122.github.io/JS-GameDev/ParallaxBackgrounds/">https://bevatsal1122.github.io/JS-GameDev/ParallaxBackgrounds/</a>
</div>
<div class="game-section">
<span class="section-heading">EnemiesMovement - </span><br>
<div class="sub-sections">
FlyingBat:   <a href="https://bevatsal1122.github.io/JS-GameDev/EnemiesMovement/FlyingBat/">https://bevatsal1122.github.io/JS-GameDev/EnemiesMovement/FlyingBat/</a><br>
EndlessHorizontalBatWave:   <a href="https://bevatsal1122.github.io/JS-GameDev/EnemiesMovement/EndlessHorizontalBatWave/">https://bevatsal1122.github.io/JS-GameDev/EnemiesMovement/EndlessHorizontalBatWave/</a><br>
EndlessCircularBatScrolling:   <a href="https://bevatsal1122.github.io/JS-GameDev/EnemiesMovement/EndlessCircularBatScrolling/">https://bevatsal1122.github.io/JS-GameDev/EnemiesMovement/EndlessCircularBatScrolling/</a><br>
InsideLoopBatPattern:   <a href="https://bevatsal1122.github.io/JS-GameDev/EnemiesMovement/InsideLoopBatPattern/">https://bevatsal1122.github.io/JS-GameDev/EnemiesMovement/InsideLoopBatPattern/</a><br>
RandomBatJumping:   <a href="https://bevatsal1122.github.io/JS-GameDev/EnemiesMovement/RandomBatJumping/">https://bevatsal1122.github.io/JS-GameDev/EnemiesMovement/RandomBatJumping/</a>
</div>
</div>
</body>
</html>