-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (86 loc) · 3.05 KB
/
index.html
File metadata and controls
88 lines (86 loc) · 3.05 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password</title>
<link rel="stylesheet" href="style.css">
<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=Lora:ital,wght@0,400..700;1,400..700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<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=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<div class="logo">pass-X</div>
<div class="about">
<ul>
<li>Home</li>
<li>About</li>
<li>Contacts</li>
</ul>
</div>
<div class="socials">
<ul>
<li><img src="svg/Instagram.png"></li>
<li><img src="svg/Twitter.png"></li>
<li><img src="svg/Facebook.png"></li>
</ul>
</div>
</nav>
<main>
<header>
<h1>Password - X</h1>
<h2>Securely store and manage your passwords with ease</h2>
<h2>Never forget a password again—simple, safe, and accessible.</h2>
</header>
<div class="tableandEntry">
<div class="left">
<table class="table">
<!-- <tr>
<th>user name</th>
<th>Password</th>
<th>delete</th>
</tr>
<tr>
<td>user1</td>
<td>pass1</td>
<td>delete</td>
</tr>
<tr>
<td>user2</td>
<td>pass2</td>
<td>delete</td>
</tr>
<tr>
<td>user3</td>
<td>pass3</td>
<td>delete</td>
</tr>
<tr>
<td>user4</td>
<td>pass4</td>
<td>delete</td>
</tr> -->
</table>
</div>
<div class="right">
<div class="header">
<h1>Add Passwords</h1>
</div>
<form>
<label for="email" class="f-mail">user name-</label>
<input type="email" id="email" name="email" required><br><br>
<label for="password" class="f-password">Password-</label>
<input type="password" id="password" name="password" required>
</form>
<button class="add-button">Add</button>
</div>
</div>
</main>
<script src="index.js">
</script>
</body>
</html>