-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (44 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<link href="base.css" rel="stylesheet">
<title>Jayant's website</title>
</head>
<!--a-->
<body style="background-color:lightblue;">
<div class="heading">
<header>
<h1><a href="index.html" title="Jayant's website">Jayant's website</a></h1>
</header>
</div>
<div class="left-bar">
<ul>
<li>
<a href="page2.html">My hobbies</a>
</li>
<li>
<a href="teachers.html">My teachers</a>
</li>
<li>
<a href="aboutme.html">About me</a>
</li>
</ul>
</div>
<div class="main-section">
<p>I go to American High School in Fremont, California. I am in 11th grade.</p>
<img src="https://rodanbuilders.com/wp-content/uploads/2016/02/American-High-School-503-597x322.jpg
" alt="AHS">
<p><small> This is an image of the school I go to. </small>
</p>
<h2>A button test</h2>
<p>This is a test to see if buttons work:</p>
<button type="button" onclick="myFunction()">Click to see one of my interests.</button>
<p id="demo">Hi I am a button.</p>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "I like riding my bicycle.";
}
</script>
</div>
</body>
</html>