-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 2.51 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>PettaBoyStudio</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/pettaboystyle.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" href="imgsrc/iconpbs.png" type="image/x-icon">
<style>
body, h1, h2, h3, h4, h5, h6 {font-family: "Lato", sans-serif;}
.bar, h1, button {font-family: "Montserrat", sans-serif;}
</style>
</head>
<body>
<!-- Header -->
<header class="container center bg" style="padding:128px 16px; background: url('imgsrc/space.png');">
<h1 class="margin jumbo text-white">PettaBoyStudio</h1>
<p class="xlarge text-white">Hi, I am Sishir. Welcome to my projects page.</p>
</header>
<!-- First Project Description -->
<div class="row-padding padding-64 container">
<div class="content">
<div class="twothird">
<h1><a href=virtualmusickeyboardsite.html>VirtualMusicKeyboard</a></h1>
<h5 class="padding-32">A music keyboard designed for the computer.</h5>
</div>
<div class="third center">
<img class="padding-64" src="imgsrc/virtualmusickeyboardicon.png">
</div>
</div>
</div>
<!-- Second Project Description -->
<div class="row-padding light-grey padding-64 container">
<div class="content">
<div class="third center">
<img class="padding-64" src="imgsrc/chladni_plate.png">
</div>
<div class="twothird">
<h1><a href=cymaticssimulator_chladni.html>Cymatics Simulator - Chladni</a></h1>
<h5 class="padding-32">Attempt at simulating cymatic patterns on a chladni plate. Inspired from <a href="https://www.youtube.com/watch?v=Q3oItpVa9fs">this video.</a></h5>
</div>
</div>
</div>
<!-- More! -->
<div class="container black center padding-64">
<h1 class="margin xlarge">More projects on the way!</h1>
</div>
<!-- Footer -->
<footer class="container padding-64 center opacity">
<div class="xlarge padding-32">
<a href="https://www.github.com/PettaBoy"><i class="fa fa-github hover-opacity"></i></a>
<p class="medium"><i class="fa fa-copyright hover-opacity"></i>2021, Sishir Sivakumar.</p>
</div>
</footer>
</body>
</html>