-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKarel.html
More file actions
30 lines (29 loc) · 1.23 KB
/
Karel.html
File metadata and controls
30 lines (29 loc) · 1.23 KB
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
<!DOCTYPE html>
<html lang="eng" dir="ltr">
<head>
<meta charset="utf-8">
<title>Karel (not made by me)</title>
<link href="index.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="body">
<header>
<h1>Game Design and Development Class </h1>
<nav>
<ul id="buttons">
<li><a href="index.html">Home</a></li>
</ul>
</nav>
</header>
<img
id="myImage3"
src="https://images.cooltext.com/5667329.png"
alt="samcon30" />
<! this is the code for my button at the bottom it also adds an id for formating with CSS
otherwise apon click it acts like a hyperlink and takes you to my youtbe channel>
<button id="button" onclick = "window.location.href='https://www.youtube.com/@Samcon30';"></button>
<!this is an Iframe it embeds another website or video or really almost anything into a website>
<iframe width="100%" height="748px" src="https://stanford.edu/~cpiech/karel/ide.html" title="Karel"></iframe>
</div>
</body>
</html>