-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.61 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Database Hub</title>
<link rel="stylesheet" href="./assets/styles/style.css">
</head>
<body>
<section class="homepage-container">
<header>
<nav>
<section class="logo">
<a href="./" target="_self">User Database Hub</a>
</section>
<section class="pages-link-section">
<a href="./userCreation/" target="_self">Create User</a>
<a href="./UserDataManipulation/" target="_self">Show Users</a>
</section>
</nav>
</header>
<main>
<section class="homepage-information-section">
<h3>Empower Your User Operations</h3>
<p>Take control of your user database with ease.
<br>Effortlessly create, update, and manage user data
With our intuitive CRUD system.
Simplify your workflow and save time.
</p>
<section class="homepage-button-section">
<a href="./userCreation/" target="_self"><button>Create User</button></a>
<a href="./UserDataManipulation/" target="_self"><button>Show Users</button></a>
</section>
</section>
<section class="homepage-image-section">
<img src="./assets/images/database.jpg" alt="database pic">
</section>
</main>
</section>
</body>
</html>