-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 839 Bytes
/
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
<html>
<head>
<title>Wordart On Demand</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script src="js/object-observe-lite.js"></script>
<script src="js/wordart.js"></script>
<style>
body {
height: 5000px;
width: 5000px;
}
.positionWrapper {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
}
.stage .container .wordart {
font-size: 300px !important;
}
</style>
</head>
<body id="body">
<div class="positionWrapper">
<div class="stage">
<div class="container">
<div class="wrapper">
<div id="capture" class="wordart {art_placeholder}">
<span class="text" data-text="{word_placeholder}">{word_placeholder}</span>
</div>
</div>
</div>
</div>
</div>
</body>
</html>