Computer Tech Academy
2.15K subscribers
4 photos
27 files
86 links
Welcome to Computer Tech Academy Channel dedicated to computer basics, CCC, Tally, office, Excel, and HTML!
Youtube:
https://www.youtube.com/@ComputerTechAcademy
Download Telegram
For Course Enquiry or Admission Process Call Us On: 8448085412
Computer Tech Academy pinned «For Course Enquiry or Admission Process Call Us On: 8448085412»
tally practice Set 8.pdf
505.8 KB
Tally Prime: Practice Set-8
👍2
TALLY PRACTICE SET 10.pdf
512.8 KB
Tally Prime: Practice set-10
👍3
Stock Managemnt Practical File.xlsx
11.5 KB
Stock [ Inventory ] Management in Excel - Stock Maintain in Excel ( Hindi ) - Stock Register : https://youtu.be/aYoG77HDUJI
👍1
HTML Font Code.pdf
17.3 KB
How to change Background Color & Image in HTML with Example? | Computer Tech Academy
70 Excel Formula Practice File.xlsx
22 KB
70 Most Important MS Excel Formula One Shot in Just 2 Hours | MS Excel Formula Tips & Tricks 2025
👍1
<html>
<head><title> Form Tag </title></head>
<body>
<form method="post">
<font color="red"><h1>USER Form</h1></font>

<b>First Name:</b><Br>
<input type="text" name="firstname"/> <br>
<b>Last Name:</b><Br>
<input type="text" name="lastname"/> <br>
<b>Father Name:</b><Br>
<input type="text" name="fathername"/> <br>
<b>Contact No.:</b><Br>
<input type="password" name="contact"/> <br>
<b>Email.:</b><Br>
<input type="Email" name="email"/> <br>

<b>Gender:</b><Br>
<input type="radio" name="gender" value="male"/>Male
<input type="radio" name="gender" value="female"/>Female
<input type="radio" name="gender" value="other"/>Other
<br>
<b>Category:</b><Br>
<input type="radio" name="gender" value="Gen"/>Gen
<input type="radio" name="gender" value="OBC"/>OBC
<input type="radio" name="gender" value="SC"/>SC
<input type="radio" name="gender" value="ST"/>ST<br>

<b>Hobbies:</b><Br>
<input type="checkbox" name="hobbies" value="Hockey"/>Hockey
<input type="checkbox" name="hobbies" value="Cricket"/>Cricket
<input type="checkbox" name="hobbies" value="Singing"/>Singing
<input type="checkbox" name="hobbies" value="Book Reading"/>Book Reading<br>
<b>Photo:</b><br>
<input type="file" name="photo"/><br>
<b>Address:</b><br>
<textarea name="address" rows="5" cols="20">
</textarea><br>
<b>City:</b><br>
<input type="text" name="city"/> <br>

<b>State:</b><br>
<select name="s1">
<option value="Uttar Pradesh">Uttar Pradesh</option>
<option value="Madhya Pradesh">Madhya Pradesh</option>
<option value="Andhra Pradesh">Andhra Pradesh</option>
<option value="Jaipur">Jaipur</option>
<option value="Delhi">Delhi</option>
<option value="Punjab">Punjab</option>
<option value="Select" selected>Select</option>
</select>
<br><br><br>
<input type="submit" value="Submit">
<input type="reset" value="reset">
</form>
</body>
</html>
👍62