-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclassesBasic.html
25 lines (17 loc) · 887 Bytes
/
classesBasic.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="Main" style="margin:20px auto; background: honeydew; box-shadow: indigo 1px 1px 1px 1px;padding: 20px;">
<h1>Click on the names to know more about the two gentlemen</h1>
<a onclick="person2()" style="color:greenyellow; background:cadetblue;display: inline; margin: 20px; box-shadow: indigo 1px 1px 1px 1px;" >Mark zuckerberg</a>
<a onclick="person1()" style="color: aquamarine; background: black;display: inline; margin: 20px; box-shadow: indigo 1px 1px 1px 1px;"" >Aganith Shanbhag</a>
</div>
</body>
<script src="classesBasic.js" type="text/javascript"></script>
</html>