-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (43 loc) · 2.11 KB
/
index.html
File metadata and controls
52 lines (43 loc) · 2.11 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
<!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>Online File Sharing Website | By Sanket Santoki</title>
<!-- Bootstrap Cdn link -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- Remix Icon Cdn link -->
<link href="https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css" rel="stylesheet">
<!-- Custom css style link -->
<link rel="stylesheet" href="assets/style.css">
<!-- Importing Montserrat font -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap" rel="stylesheet">
<!-- Importing professional font -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="wrapper d-flex justify-content-center align-items-center">
<div class="container">
<div class="page p-3">
<section class="content new-content">
<div class="intro text-center">
<h1 class="font-weight-bolder mb-4">Simple file transfer</h1>
<h4 class="font-weight-bolder mb-4">Developed By Sanket Santoki</h4>
<div class="input-center mb-3 text-center">
<input type="file" title="file" id="fileInput" class="mb-3">
<label for="fileInput" class="custom-file-lab p-3 rounded rounded-pill alert-link btn-outline-success">Upload File</label>
</div>
<button class="btn btn-primary" id="uploadButton">Share</button>
<div id="shareableLink" class="mt-3"></div>
</div>
</section>
<p class="cp-text">
© Copyright 2023. All rights reserved.
</p>
</div>
</div>
</div>
<script src="assets/script.js"></script>
</body>
</html>