-
Notifications
You must be signed in to change notification settings - Fork 0
/
umg_container_finder.html
40 lines (31 loc) · 1.3 KB
/
umg_container_finder.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
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Name -->
<title>Unreal UMG Container Finder</title>
<script src="js/Unreal/umgcheatsheet.js"></script>
<link href="css/General.css" rel="stylesheet" />
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
</head>
<!-- Content -->
<div class="container text-center mt-5">
<div class="question-circles">
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
</div>
<h1 id="question">How should the items be stacked?</h1>
<p id="result-description">How should the items be stacked?</p>
<div class="btn-group-vertical mt-3" role="group">
<button id="answer-1" type="button" class="btn btn-primary">In a vertical or horizontal list</button>
<button id="answer-2" type="button" class="btn btn-primary">In a grid/tile</button>
</div>
</div>
</body>
</html>