forked from shivshankar9/Student-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (108 loc) · 4.42 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Student Portal</title>
<link rel="shortcut icon" href="./images/logo_title_bar.png">
<link rel="stylesheet" href="./css/homepage.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=Bakbak+One&display=swap" rel="stylesheet" />
<!---stylesheet for animation--->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body>
<div id="loader">
<div id="loading-content"></div>
</div>
<div id="allContent" style="display: none;">
<div id="navbar"></div>
<header>
<div class="main-name">
<img class="logo" src="./images/logo.png" alt="">
<h1 class="heading">STUDENT PORTAL</h1>
</div>
</header>
<main data-aos="fade-left">
<div class="tools-heading">
<h2>Tools<span class="toolsicon">⚙️</span></h2>
</div>
<div class="tools-items">
<div class="row">
<img class="tools-img" src="./images/image.png" alt="" />
<button><a href="./Img-to-Pdf/index.html">Image to PDF</a></button>
</div>
<div class="row">
<img class="tools-img" src="./images/docs.png" alt="" style="padding-bottom: 25px" />
<button><a href="./Word-to-Pdf/index.html">Document to PDF</a></button>
</div>
<div class="row">
<img class="tools-img" src="./images/text.png" alt="" />
<button><a href="./Text-to-pdf/index.html">Text to PDF</a></button>
</div>
<div class="row">
<img class="tools-img" src="./images/zip.png" alt="" />
<button><a href="#">Extract zip file</a></button>
</div>
<div class="row">
<img class="tools-img resize-img" src="./images/Imgresize.png" alt="" />
<button><a href="./imageresize.html">Resize Image</a></button>
</div>
</div>
<div data-aos="fade-right">
<div class="tools-heading about-section" id="about-section">
<h2>About 📑</h2>
</div>
<div class="about-content">
This easy-to-use, user-friendly interactive webapp includes all tools that might help students and professionals
in urgencies, like convertors for text files, documents and images to pdf, extracting .zip files. <br> Now get
your wok done in few minutes without investing time on any third-party applications. The need to navigate to
several sites is over! Come to Student-Portal, choose your action tool, drop your file, get the work done,
download the same. And it's done. Yeah! It's that simple. <br>
Hope you liked our work. In case of queries, feel free to drop us a <a href="#"
style="text-decoration: underline; color: aliceblue;">mail</a>.
</div>
</div>
</main>
<footer>
<h3>Student-Portal@copyright2022</h3>
</footer>
<!-- Javascript -->
<script src="./js/script.js"></script>
<!-- chatbot implementation-->
<span>
<section id="section_chatbot">
<a class="float" id="float">
<img src="./images/chatbot.png" id="roboImg">
</a>
<!-- <div class="popup" style="width:500px;height:500px;"> -->
<div class="popup" id="popup">
<div class="textarea">
<div class="roboside">
<img src="./images/logo.png" class="avatar" alt="">
<span class="robomsg">Hello! Are you a new Student?</span>
<button class="crossbtn" onclick="hide()">X</button>
</div>
</div>
<div class="input-area">
<input type="text" id="msg" placeholder="Yes or No">
<button type="submit" class="submit">Send</button>
</div>
</div>
</section>
</span>
<!-- Scripts for Chatbot -->
<script src="./js/popup_chatbot.js"></script>
<!-- chatbot implementation-->
<!---scripts for animation--->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
offset:400,
duration:1000
});
</script>
</div>
</html>