create final link son ican acess this website
Browse files- camera.html +3 -2
- final.html +51 -0
- index.html +3 -0
- landing.html +3 -4
- promote.html +3 -2
camera.html
CHANGED
|
@@ -23,9 +23,10 @@
|
|
| 23 |
<button id="stopButton" class="btn btn-danger" disabled>Stop Camera</button>
|
| 24 |
</div>
|
| 25 |
<div class="text-center mt-4">
|
| 26 |
-
<a href="index.html" class="btn btn-outline-secondary">Back to Home</a>
|
|
|
|
| 27 |
</div>
|
| 28 |
-
|
| 29 |
</div>
|
| 30 |
</div>
|
| 31 |
|
|
|
|
| 23 |
<button id="stopButton" class="btn btn-danger" disabled>Stop Camera</button>
|
| 24 |
</div>
|
| 25 |
<div class="text-center mt-4">
|
| 26 |
+
<a href="index.html" class="btn btn-outline-secondary me-2">Back to Home</a>
|
| 27 |
+
<a href="final.html" class="btn btn-info">View All Pages</a>
|
| 28 |
</div>
|
| 29 |
+
</div>
|
| 30 |
</div>
|
| 31 |
</div>
|
| 32 |
|
final.html
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Final Links</title>
|
| 7 |
+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
|
| 8 |
+
<style>
|
| 9 |
+
body { padding: 20px; background-color: #f5f5f5; }
|
| 10 |
+
.link-card { margin-bottom: 20px; padding: 20px; border-radius: 8px; background: white; }
|
| 11 |
+
</style>
|
| 12 |
+
</head>
|
| 13 |
+
<body>
|
| 14 |
+
<div class="container">
|
| 15 |
+
<h1 class="text-center mb-4">Final Website Links</h1>
|
| 16 |
+
|
| 17 |
+
<div class="row">
|
| 18 |
+
<div class="col-md-6">
|
| 19 |
+
<div class="link-card">
|
| 20 |
+
<h3>Home Page</h3>
|
| 21 |
+
<p>Main landing page with all features</p>
|
| 22 |
+
<a href="index.html" class="btn btn-primary">Go to Home</a>
|
| 23 |
+
</div>
|
| 24 |
+
</div>
|
| 25 |
+
<div class="col-md-6">
|
| 26 |
+
<div class="link-card">
|
| 27 |
+
<h3>Video Landing Page</h3>
|
| 28 |
+
<p>Create beautiful YouTube landing pages</p>
|
| 29 |
+
<a href="landing.html" class="btn btn-primary">Go to Landing Page</a>
|
| 30 |
+
</div>
|
| 31 |
+
</div>
|
| 32 |
+
<div class="col-md-6">
|
| 33 |
+
<div class="link-card">
|
| 34 |
+
<h3>Video Promotion</h3>
|
| 35 |
+
<p>Promote your videos on social media</p>
|
| 36 |
+
<a href="promote.html" class="btn btn-primary">Go to Promotions</a>
|
| 37 |
+
</div>
|
| 38 |
+
</div>
|
| 39 |
+
<div class="col-md-6">
|
| 40 |
+
<div class="link-card">
|
| 41 |
+
<h3>Camera Access</h3>
|
| 42 |
+
<p>Access your device camera</p>
|
| 43 |
+
<a href="camera.html" class="btn btn-primary">Access Camera</a>
|
| 44 |
+
</div>
|
| 45 |
+
</div>
|
| 46 |
+
</div>
|
| 47 |
+
</div>
|
| 48 |
+
|
| 49 |
+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
|
| 50 |
+
</body>
|
| 51 |
+
</html>
|
index.html
CHANGED
|
@@ -39,6 +39,9 @@
|
|
| 39 |
</div>
|
| 40 |
</div>
|
| 41 |
</div>
|
|
|
|
|
|
|
|
|
|
| 42 |
|
| 43 |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
|
| 44 |
</body>
|
|
|
|
| 39 |
</div>
|
| 40 |
</div>
|
| 41 |
</div>
|
| 42 |
+
<div class="text-center mt-4">
|
| 43 |
+
<a href="final.html" class="btn btn-info">View All Pages</a>
|
| 44 |
+
</div>
|
| 45 |
|
| 46 |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
|
| 47 |
</body>
|
landing.html
CHANGED
|
@@ -154,12 +154,11 @@
|
|
| 154 |
</div>
|
| 155 |
</div>
|
| 156 |
</div>
|
| 157 |
-
|
| 158 |
<div class="text-center py-4">
|
| 159 |
-
<a href="index.html" class="btn btn-outline-secondary">Back to Home</a>
|
|
|
|
| 160 |
</div>
|
| 161 |
-
|
| 162 |
-
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
|
| 163 |
<script>
|
| 164 |
document.addEventListener('DOMContentLoaded', function() {
|
| 165 |
// Update video details
|
|
|
|
| 154 |
</div>
|
| 155 |
</div>
|
| 156 |
</div>
|
|
|
|
| 157 |
<div class="text-center py-4">
|
| 158 |
+
<a href="index.html" class="btn btn-outline-secondary me-2">Back to Home</a>
|
| 159 |
+
<a href="final.html" class="btn btn-info">View All Pages</a>
|
| 160 |
</div>
|
| 161 |
+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
| 162 |
<script>
|
| 163 |
document.addEventListener('DOMContentLoaded', function() {
|
| 164 |
// Update video details
|
promote.html
CHANGED
|
@@ -25,9 +25,10 @@
|
|
| 25 |
</div>
|
| 26 |
</div>
|
| 27 |
<div class="text-center mt-4">
|
| 28 |
-
<a href="index.html" class="btn btn-outline-secondary">Back to Home</a>
|
|
|
|
| 29 |
</div>
|
| 30 |
-
|
| 31 |
<h3 class="mb-3">Share on Platforms:</h3>
|
| 32 |
<div class="d-flex flex-wrap justify-content-center">
|
| 33 |
<a href="#" class="platform-link" data-platform="facebook"><img src="http://static.photos/blue/200x200/1" alt="Facebook" class="platform-icon rounded-circle"></a>
|
|
|
|
| 25 |
</div>
|
| 26 |
</div>
|
| 27 |
<div class="text-center mt-4">
|
| 28 |
+
<a href="index.html" class="btn btn-outline-secondary me-2">Back to Home</a>
|
| 29 |
+
<a href="final.html" class="btn btn-info">View All Pages</a>
|
| 30 |
</div>
|
| 31 |
+
<div id="platforms" class="text-center">
|
| 32 |
<h3 class="mb-3">Share on Platforms:</h3>
|
| 33 |
<div class="d-flex flex-wrap justify-content-center">
|
| 34 |
<a href="#" class="platform-link" data-platform="facebook"><img src="http://static.photos/blue/200x200/1" alt="Facebook" class="platform-icon rounded-circle"></a>
|