-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.html
39 lines (38 loc) · 1.32 KB
/
sample.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>my first Project</title>
<link rel="StyleSheet" href="StyleSheet1.css">
<script type="text/javascript" src="javascript.js"></script>
</head>
<body>
<h1>HOLA!!</h1>
<p class="para">Welcome To IIIT BASAR</p>
<h4>Hover to see the effect</h4>
<img id="logo" src="https://i.postimg.cc/FzKyBqcw/rgukt.jpg" border="5" width="150" height="200" alt="rgukt-logo" onmouseover="mouseIn();" onmouseout="mouseOut();">
<br>
<input id="inputName" type="text" placeholder="Enter Your Name" />
<button onclick="sayHello();">Submit</button>
<br>
<div class="clg-link">
<a href="http://hub.rgukt.ac.in">CLick here to visit our official website</a>
</div>
<br>
<h4>PLease Select Your Branch</h4>
<input type="radio" name="branch" value="CSE" class="branch-opt"> CSE
<br>
<input type="radio" name="branch" value="ECE" class="branch-opt"> ECE
<br>
<input type="radio" name="branch" value="CIVIL" class="branch-opt"> CIVIL
<br>
<input type="radio" name="branch" value="MECH" class="branch-opt"> MECH
<br>
<input type="radio" name="branch" value="EEE" class="branch-opt"> EEE
<br>
<input type="radio" name="branch" value="MME" class="branch-opt"> MME
<br>
<input type="radio" name="branch" value="CHEM" class="branch-opt"> CHEM
<br> <br>
</body>
</html>