-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path10Print.html
35 lines (32 loc) · 995 Bytes
/
10Print.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
<html>
<head>
<meta charset="UTF-8">
<script language="javascript" type="text/javascript" src="libraries/p5.js"></script>
<!-- uncomment lines below to include extra p5 libraries -->
<script language="javascript" src="libraries/p5.dom.js"></script>
<script language="javascript" src="libraries/p5.sound.js"></script>
<script language="javascript" type="text/javascript" src="10Print.js"></script>
<!-- this line removes any default padding and style. you might only need one of these values set. -->
<style>
body {
padding: 0;
margin: 0;
}
h2 {
position: absolute;
float: left;
top: 15%;
left: 50%;
transform: translate(-50%, -50%);
font-family: cursive;
font-size: 150px;
color: white;
}
</style>
</head>
<body>
<div class="textInside">
<h2>Hello <br>moti :D </h2>
</div>
</body>
</html>