-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (31 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Improved UI</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="main">
<div class="container">
<div class="page page1">
<h1 class="heading">Welcome</h1>
<p class="para">This is the first page of our improved UI. It's now more attractive and responsive!</p>
<div class="button">
<button>Next</button>
</div>
</div>
<div class="page page2">
<h1 class="heading">Thank You</h1>
<p class="para">You've reached the second page. The UI is now more engaging and user-friendly.</p>
<div class="button">
<button>Back</button>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>