-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 1.04 KB
/
index.html
File metadata and controls
33 lines (32 loc) · 1.04 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
31
32
33
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>About Me</title>
<link rel="stylesheet" href="style.css">
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="design.js"></script>
</head>
<body>
<div id="demo">
<h1>Patrick Beuhler</h1>
<p>Content should go here, probably</p>
<img src="http://www.ittc.ku.edu/contacts/images/gminden.jpg"></img>
</div>
<div class="myClass">
<h1>Class test</h1>
</div>
<div id="otherDiv">
<h1>other div</h1>
<p>Content should go here, probably</p>
<button type="button" onclick="func()">Clicky</button>
</div>
<div id="hiddenPane">
<h1>You pressed the button, didn't you?</h1>
<p>Of course you did</p>
</div>
</body>
</html>