-
Notifications
You must be signed in to change notification settings - Fork 0
/
unityEssentialsProjectPage.html
139 lines (124 loc) · 5.39 KB
/
unityEssentialsProjectPage.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="images/favicon.ico">
<title>Paul Steiner</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<div class="container">
<div class="row">
<div class="col-sm">
<a class="navbar-brand" href="index.html">
<img src="images/square white.png" alt="logo" width="50" height="50">
</a>
</div>
<div class="col-sm">
</div>
<div class="col-sm">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</nav>
<img class="unityPicture" src="images/unity-essentials-pathway.png" alt="unity badge">
<div class="jumbotron">
<h1 class="display-4">I completed the Unity Essentials Pathway!</h1>
<p class="lead">Learn more about it below</p>
<hr class="my-4">
<p>You can also see the rest of my projects by clicking the button</p>
<p class="lead">
<a class="btn btn-outline-secondary btn-sm" href="projects.html" role="button">Projects page</a>
</p>
</div>
<div class="container">
<div class="row">
<div class="col">
</div>
<div class="col-8">
<!-- <p>Unity Technologies is the creator of a flexible and high-performance end-to-end
development platform used to create rich interactive 2D, 3D, VR and AR experiences.
Unity's powerful graphics engine and full-featured editor serve as the
foundation to develop beautiful games or apps and easily bring them to
multiple platforms. Unity Technologies serves large publishers, indie
studios, students and hobbyists around the globe.</p> -->
<p>
This is what Unity says about the pathway:
<em>
"Unity Essentials is the pathway for interested creators who are just
getting started with Unity and real-time content creation. To achieve
this pathway badge participants will create their first simple interactive
experience with Unity. Learners who achieve the Unity Essentials Pathway
badge can define real-time production, use the essentials features
of the Unity Editor, navigate in 3D space, create and manage Scenes,
GameObjects, Prefabs, and publish a simple Unity project."
</em>
</p>
<p>
You can verify this badge by clicking <a href="https://www.youracclaim.com/badges/56abf5f5-4e0d-40dc-af1b-bf85a4ac2711/public_url">here</a>!
</p>
</div>
<div class="col">
</div>
</div>
</div>
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<div class="container">
<div class="row">
<div class="col-sm">
<a class="navbar-brand" href="index.html">
© 2024 Paul Steiner
</a>
</div>
<div class="col-sm">
</div>
<div class="col-sm">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="https://www.linkedin.com/in/paul-steiner-0538a317b/"><img src="images/In-White-34.png" alt="logo"></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/paulionel"><img src="images/GitHub-Mark-Light-32px.png" alt="logo"></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</nav>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
</body>
</html>