-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (88 loc) · 4.51 KB
/
index.html
File metadata and controls
100 lines (88 loc) · 4.51 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover"/>
<title>OpenConvert</title>
<link rel="stylesheet" href="style.css"/>
<script src="./javascript/default.js"></script>
<link rel="icon" href="./favicon/favicon.ico" type="image/x-icon"/>
<link rel="apple-touch-icon" sizes="180x180" href="./favicon/apple-touch-icon.png"/>
<link rel="icon" type="image/png" sizes="32x32" href="./favicon/favicon-32x32.png"/>
<link rel="icon" type="image/png" sizes="16x16" href="./favicon/favicon-16x16.png"/>
<link rel="manifest" href="./favicon/site.webmanifest"/>
<meta name="theme-color" content="#EBEBEB" id="meta-theme-color"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="default"/>
<meta name="apple-mobile-web-app-title" content="OpenConvert"/>
<meta name="mobile-web-app-capable" content="yes"/>
<meta name="description" content="OpenConvert is a versatile file conversion tool that supports a wide range of formats including images, documents, audio, and video."/>
<meta name="keywords" content="file conversion, image converter, document converter, audio converter, video converter"/>
<meta name="author" content="OpenConvert Team"/>
<link rel="prefetch" href="../convert" as="document"/>
<link rel="prefetch" href="../settings" as="document"/>
<link rel="prefetch" href="../about" as="document"/>
<script src="./javascript/theme-switcher.js"></script>
</head>
<body>
<div class="site-container">
<div class="top-navigation">
<a class="active" href="/">Home</a>
<a href="/convert">Convert</a>
<a href="/settings">Settings</a>
<a href="/about">About</a>
</div>
<div class="container">
<div class="image-container-left">
<img src="./images/logo.png" alt="OpenConvert Logo" class="container-logo"/>
</div>
<div class="text-container-right">
<h1>The file converter you've been waiting for.</h1>
<p>Fast, simple, and hassle-free — OpenConvert makes switching formats easier than ever. Whether you're working with documents, images, audio, or video, just upload your file and let us handle the rest. No ads, no confusion, just pure converting bliss.</p>
<div class="button-container">
<a href="/convert" class="button">Start Converting</a>
<a href="/about" class="button">Learn More</a>
</div>
</div>
</div>
<div class="supported-formats">
<h2>Supported Formats:</h2>
<div class="formats-grid">
<div class="format-box">
<div class="format-icon-container">
<img src="./images/icons/image.png" alt="Image Formats" class="format-icon">
<h3 class="format-title">Images</h3>
</div>
<p>JPEG, PNG, GIF, BMP, TIFF, SVG, WebP</p>
</div>
<div class="format-box">
<div class="format-icon-container">
<img src="./images/icons/document.png" alt="Document Formats" class="format-icon">
<h3 class="format-title">Documents</h3>
</div>
<p>PDF, DOC, DOCX, XLS, XLSX, PPT, PPTX, TXT, RTF</p>
</div>
<div class="format-box">
<div class="format-icon-container">
<img src="./images/icons/audio.png" alt="Audio Formats" class="format-icon">
<h3 class="format-title">Audio</h3>
</div>
<p>MP3, WAV, AAC, FLAC, OGG, M4A</p>
</div>
<div class="format-box">
<div class="format-icon-container">
<img src="./images/icons/video.png" alt="Video Formats" class="format-icon">
<h3 class="format-title">Video</h3>
</div>
<p>MP4, AVI, MOV, WMV, MKV, FLV, WEBM</p>
</div>
</div>
</div>
<div class="break"></div>
<div class="footer">
<p>© 2025 OpenConvert. All rights reserved.</p>
<p>Made with ❤️ by the <a href="../about/" style="text-decoration: none;">OpenConvert Team</a></p>
</div>
</div>
</body>
</html>