-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
157 lines (140 loc) · 6.41 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="./mediaQueries.css">
<link rel="stylesheet" href="timeline.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script type="module" src='./users.js' defer></script>
<title>Link Shortner</title>
</head>
<body>
<section class="userdetails">
<div class="userdetails-center">
<h3>Welcome<h3 id="uservalue"></h3>
<p class="typing-demo">Short your url here</p>
</div>
<div class="scroll-down">
<p class="scroll-down-value">Tap here</p>
</div>
</section>
<header>
<div class="logo-and-nav my-container">
<div class="logo">
<img src="./images/url miniature.png" alt="logo" width="250rem;">
<div class="hamburger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</div>
<nav class="nav-links hidden">
<ul class="logout-button">
<button id='logout'>Logout</button>
</ul>
</nav>
</div>
<div class="header-main">
<div class="header-text">
<h1>Shorten your link here!</h1>
<p>Build your brand’s recognition and get detailed insights on how your links are performing.</p>
</div>
<div class="header-img">
<img src="./images/illustration-working.svg" alt="working">
</div>
</div>
</header>
<form action="#">
<div class="link-div">
<input id="link" type="text" aria-label="linkInput" placeholder="Shorten a link here..." required>
<button type="submit" id='shortenLink'>Shorten It!</button>
</div>
</form>
<main>
<div class="loading-div"></div>
<div class="result"></div>
</main>
<footer>
<div class="wrapper">
<img src="profile.jpg" alt="profile picture" class="image--cover">
</div>
<div id="footerDiv" class="my-container">
<div class="timeline">
<div class="container left" data-aos="fade-right">
<div class="content">
<h2>About Project</h2>
<p>
Urlminiature, Here you can shorten your long and big url to small and compact size
which you can share easily with others.
Get results fastly and effectively.
<br>
<br>
</p>
</div>
</div>
<div class="container right" data-aos="zoom-in">
<div class="content">
<h2>Technology Used</h2>
<p>
The technology stack that is being used in this project are HTML, CSS, and JavaScript
and i also implemented firebase authentication in this for Login and Sign-Up.
I also lightweight libraries of JavaScript such as Aos.js for animation and jquery cdns.
</p>
</div>
</div>
<div class="container left" data-aos="zoom-in">
<div class="content">
<h2>API</h2>
<p>
I had used the API for the purpose of shorting the big URLs
into the small compact URLs.
Here is the Link mentioned of the api documentation.<br><br>
<a href="https://shrtco.de/" target="_blank">click here!</a>
</p>
</div>
</div>
<div class="container right" data-aos="fade-left">
<div class="content">
<h2>Github</h2>
<p>
Here you can check the source code for the project on the Github
and for the the feedback you can always reach me out at my email address
<b>[email protected]</b> and the github repository URL is:
<a href="https://github.com/iamvermajayant/urlminiature" target="_blank">Click here!</a>
</p>
</div>
</div>
</div>
</div>
<div class="attribution">
</div>
</footer>
<hr>
<footer>
<div class="nav-footer">
<div class="social-icons">
<!-- <span Class="social-icon5">Connect Here</span> -->
<div class="social-icon1"><a href="https://www.linkedin.com/in/jayant-verma-13062001/" target="_blank"><i class="fa fa-linkedin-square" style="font-size:36px; color: white" ></a></i></div>
<div class="social-icon2"><a href="https://twitter.com/iamjayant_verma" target="_blank"><i class="fa fa-twitter" style="font-size:36px; color: white"></i></a></div>
<div class="social-icon3"><a href="https://github.com/iamvermajayant" target="_blank"><i class="fa fa-github" style="font-size:36px; color: white"></i></a></div>
<div class="social-icon4"><a href="https://www.instagram.com/jayantverma.js/" target="_blank"><i class="fa fa-instagram" style="font-size:36px; color:white"></i></a></div>
</div>
</div>
</footer>
<script src="section.js"></script>
<script src='./app.js'></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
duration: 2000,
offset: 70,
});
</script>
</body>
</html>