Coding By Yakub
703 subscribers
273 photos
97 files
24 links
This channel for online classes videos for java , jdbc, hibernate, spring and spring boot and react js. With handson
Download Telegram
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Login Page</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
<script src='main.js'></script>
</head>
<body>
<fieldset>
<table border="0">
<h2>Login Form</h2>
<form action="Login.jsp">
<tr>
<td> User Name:</td>
<td> <input type="text" name="uname" placeholder="Enter Your Name"></td>
</tr>
<tr>
<td> Password:</td>
<td><input type="password" name="psw" placeholder="Enter Your Password"></td>
</tr>
<tr>
<td></td>
<td> <input type="submit" value="Login"></td>
</tr>
</form>

</table>
</fieldset>
</body>
</html>
👍1🥰1
👍1
Forwarded from ORACLE BATCH 2024
Create table with name Student:
=================================
SQL> create table student(sid number(20), sname varchar2(20), age number(20),
course varchar2(20), fees number(30), location varchar2(20));

Insert records into Student table:
=================================
insert into student values(101, 'ram', 24, 'java', 12000, 'hyderabad');
insert into student values(102, 'amar', 27, 'c', 5000, 'pune');
insert into student values(103, 'satya', 21, 'python', 9000, 'chennai');
insert into student values(104,'pavan',28,'android',8000, 'hyderabad');
insert into student values(105, 'harin', 22, 'java', 12000, 'bangalore');
insert into student values(106, 'swathi', 19, 'android', 8000, 'chennai');
insert into student values(107, 'raji', 20, 'c', 5000, 'pune');
insert into student values(108, 'jaya', 25, 'java', 12000, 'hyderabad');
insert into student values(109, 'harsha', 29, 'python', 9000, 'chennai');
insert into student values(110, 'vijaya', 20, 'java', 12000, 'hyderabad');
👍3
Forwarded from ORACLE BATCH 2024
Forwarded from ORACLE BATCH 2024
Forwarded from ORACLE BATCH 2024