[go: up one dir, main page]

0% found this document useful (0 votes)
19 views1 page

Code2pdf 6888c8b2358b4

This document is an HTML template for a login page. It includes a form for users to enter their username and password, along with a link for those who do not have an account. The page is styled with external fonts and a CSS stylesheet.

Uploaded by

acc888235
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views1 page

Code2pdf 6888c8b2358b4

This document is an HTML template for a login page. It includes a form for users to enter their username and password, along with a link for those who do not have an account. The page is styled with external fonts and a CSS stylesheet.

Uploaded by

acc888235
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&family=Poppins:wght@400;500;700&family=Winky+Rou
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Login Page</title>
</head>
<body>
<h1>Login</h1>
<div class="login-form" style="color: rgb(71, 71, 71);">
<form action="">
<label for="">Username</label><br>
<input type="text"><br>
<label for="">Password</label><br>
<input type="text"><br>
<a href="#" >Don't have account?</a>
<button >Login</button>
</form>
</div>
</body>
</html>

You might also like