-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject_python_particle_system.html
67 lines (53 loc) · 2.34 KB
/
project_python_particle_system.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
<!-- Simple personal projects blog website -->
<!DOCTYPE html>
<!-- Path: index.html -->
<html lang="en">
<head>
<script src="cubeScript.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Henri's world</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="styleCube.css">
</head>
<body>
<div class="container">
<!-- Navigation bar -->
<div class="navbar">
<div class="cube3d_scene">
<div class="cube3d">
<div class="front"> <img src="images/cubeFace.png"> </div>
<div class="back"> <img src="images/cubeFace.png"> </div>
<div class="right"> <img src="images/cubeFace.png"> </div>
<div class="left"> <img src="images/cubeFace.png"> </div>
<div class="down"> <img src="images/cubeFace.png"> </div>
<div class="top"> <img src="images/cubeFace.png"> </div>
</div>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a>
</li>
<li><a href="about.html">About</a>
</li>
<li><a href="projects.html">Projects</a>
</li>
</ul>
</nav>
</div>
<!-- Main content -->
<div class="main">
<h1 id="Label">Particle Sytem with PyGame</h1>
<p style = "text-indent:1cm;">
Simple particle system made with PyGame. A one day project.
</p>
<video controls>
<source src="videos/python_particles.mp4">
Your browser does not support the video tag.
</video>
<center><b class="imgvid_title">Gameplay demo</b></center>
<a class="hyperLink" href="source_explore/pygame_particles.html">Explore Source</a>
</div>
</div>
</body>
</html>