-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (47 loc) · 1.74 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Ohio State</title>
<link rel="stylesheet" href="style.css">
<style>
.red {
font-size: 10em;
}
</style>
</head>
<body>
<h1>
THE Kevin Lewis Website
</h1>
<a href="page2.html">See my second page</a>
<a href="http://cosi.org" target="_blank">CoSI Link</a>
<hr>
<div style="display:flex">
<div>
<button onclick="myFunc()">This is a button</button>
<p id="myParagraph">Old Text</p>
<p>Look at this website, isn't it pretty cool? I have a background, some shadows, and some cool animations all
done with <b>CSS</b>! We'll go over what that is soon, but for now, I think it's pretty cool.</p>
<h3 id="ugly">Why Programming Is Cool</h3>
<ol>
<li>It's fun</li>
<li>You get to make cool stuff</li>
<li>It's useful</li>
<li>You can be as creative as you want</li>
<li>It's great for scientific advancements and helping humanity</li>
<li>It can help test things you're curious about</li>
</ol>
<h3>Next Time</h3>
<p>We will learn <a href="https://csszengarden.com/" target="_blank">CSS</a> and <a target="_blank"
href="https://getbootstrap.com/docs/5.0/getting-started/introduction/">Bootstrap!</a></p>
<h3>I have a hobby </h3>
<p>But I'll never tell you what it is</p>
<h3 class="red">Thanks for viewing my website </h3>
</div>
<div style="width: 300px"><img
src="https://media.licdn.com/dms/image/C5603AQFN4fYGxqgw0w/profile-displayphoto-shrink_800_800/0/1659382842028?e=2147483647&v=beta&t=YySUvYwaFi0xDCgbO5M_7vKT4kctuQqJ5lczQcxmvHg"
width="100%"></div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>