diff --git a/Prerit Kumar Jain/Issue No. 13/index.html b/Prerit Kumar Jain/Issue No. 13/index.html
new file mode 100644
index 00000000..b67376be
--- /dev/null
+++ b/Prerit Kumar Jain/Issue No. 13/index.html
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+ Feedback
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Prerit Kumar Jain/Issue No. 13/style.css b/Prerit Kumar Jain/Issue No. 13/style.css
new file mode 100644
index 00000000..bd6c41c1
--- /dev/null
+++ b/Prerit Kumar Jain/Issue No. 13/style.css
@@ -0,0 +1,62 @@
+@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
+
+* {
+ padding: 0;
+ margin: 0;
+ box-sizing: border-box;
+ font-family: 'Poppins', sans-serif;
+}
+
+.container {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 100%;
+ height: 100vh;
+ background-color: #d6cfe5;
+}
+
+form {
+ display: flex;
+ flex-direction: column;
+ background-color: rgb(84, 97, 234);
+ padding: 25px;
+ border-radius: 10px;
+ width: 90%;
+ max-width: 600px;
+}
+
+form p {
+ font-weight: 600;
+ width: 50%;
+ padding: 5px 10px;
+ font-size: 20px;
+ margin: auto 22vmin;
+ border: 4px solid black;
+ border-radius: 10px;
+ text-align: center;
+}
+
+.lk {
+ font-size: 33px;
+}
+
+form input,
+form textarea {
+ padding: 10px;
+ margin: 10px 0;
+ color: white;
+ outline: none;
+ border: none;
+ background-color: rgb(207, 232, 230);
+ border-radius: 5px;
+}
+
+form button {
+ padding: 10px;
+ margin: 2vmin auto;
+ width: 150px;
+ background-color: rgb(148, 189, 247);
+ border: none;
+ border-radius: 8px;
+}
\ No newline at end of file