Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions PriyaMakhloga-70-21712219/externalcss.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
HTML CSS is used to apply a rule to multiple pages. An external style sheet is a separate css file that can be accessed by creating a link within the head section of the webpage.
Example:
<head>
<title>External css</title>
<link ref="stylesheet" href="style.css">
</head>
23 changes: 23 additions & 0 deletions PriyaMakhloga-70-21712219/form.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!doctype html>
<html> lang="en"
<head>
<title>Student Form</title>
</head>
<body>
<form action="#">
<label for="Username">Username</label>
<input type="text"
<br>
<label for="Password">Password</label>
<input type="password">
<br>
<label for="DOB">DOB</label>
<input type="date">
<br>
<label> for="Email">Email</label>
<input type="email"
<br>
<input type="submit" value="submit">
</form>
</body>
</html>