0% found this document useful (0 votes)
2 views1 page

New Text Document

This document is an HTML template for a URL shortener web application. It includes a form for users to input a long URL, which can then be shortened, and provides functionality to copy the shortened URL. The page is styled with an external CSS file and uses Font Awesome for icons.

Uploaded by

akshanshmanu2007
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views1 page

New Text Document

This document is an HTML template for a URL shortener web application. It includes a form for users to input a long URL, which can then be shortened, and provides functionality to copy the shortened URL. The page is styled with an external CSS file and uses Font Awesome for icons.

Uploaded by

akshanshmanu2007
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!-- index.

html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>URL Shortener - urlshorter.wuaze.com</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/
all.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1><i class="fas fa-link"></i> URL Shortener</h1>
<div class="form-container">
<form id="shortenForm">
<div class="input-group">
<input type="url" id="longUrl" placeholder="Enter your long URL
here..." required>
<button type="submit">Shorten <i class="fas
fa-scissors"></i></button>
</div>
</form>
<div id="result" class="hidden">
<div class="result-group">
<input type="text" id="shortUrl" readonly>
<button id="copyBtn"><i class="far fa-copy"></i></button>
</div>
</div>
</div>
</div>

<script src="script.js"></script>
</body>
</html>

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy