-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
24 lines (24 loc) · 1.09 KB
/
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<script
src="https://browser.sentry-cdn.com/7.1.1/bundle.tracing.min.js"
integrity="sha384-p+vO3NBBhOw0sRTPPPeAacfOonwgsAL2xTEYl6sQIHhmQ17LLZkxHV2/s9VSEeTn"
crossorigin="anonymous"
></script>
<script
src="https://browser.sentry-cdn.com/7.1.1/bundle.debug.min.js"
integrity="sha384-JoZcKyngzyZRCEqnBUWe/BYdWIQtwZCVluZSE2YEgG/09VjJwzSkRsaiAz8I0NU3"
crossorigin="anonymous"
></script>
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<p>Software Engineering 101</p>
<div style="width:50px; height:50px; border: 3px solid red; margin-bottom:10px;" id="box1"></div>
<button type="button" onclick="triggerError()">Trigger an Error #1</button>
<button type="button" onclick="generateAnError()">Trigger an Error #2</button>
<br />
<img src="https://cdn.pixabay.com/photo/2015/04/23/22/00/tree-736885__480.jpg" style="margin-top: 10px;" width="400" height="300">
</body>
</html>