-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutmevid.html
120 lines (98 loc) · 4.68 KB
/
aboutmevid.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Justin Lopez | Things I Do In a Day</title>
<!-- Bootstrap CSS (Local) -->
<link href="css/bootstrap.min.css" rel="stylesheet" />
<!-- Bootstrap JS (Local) -->
<script src="js/bootstrap.bundle.min.js"></script>
<!-- Stylesheet Link -->
<link rel="stylesheet" href="styles.css">
<!-- SEO Meta Tags -->
<meta name="description" content="Justin's daily routine, in video form.">
<meta name="keywords" content="justin, lopez, portfolio, about me, graphic design, video, audio, things, i, do, in, a, day">
<meta name="author" content="Justin Lopez">
<meta name="robots" content="index, follow"> <!-- Allow search engines to index and follow your pages -->
<!-- Open Graph Meta Tags (for social media sharing) -->
<meta property="og:title" content="Justin Lopez | Video | Things I Do In a Day">
<meta property="og:description" content="Justin's daily routine, in video form.">
<meta property="og:image" content="URL to your website's main image for social media sharing">
<meta property="og:url" content="URL of the current page">
<meta property="og:type" content="website">
<!-- Twitter Meta Tags (for Twitter Card) -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Justin Lopez | Video | Things I Do In a Day">
<meta name="twitter:description" content="Justin's daily routine, in video form.">
<meta name="twitter:image" content="URL to your website's main image for Twitter sharing">
<!-- Canonical URL -->
<link rel="canonical" href="URL of the canonical version of this page">
<!-- Favicon (replace "favicon.ico" with the path to your favicon) -->
<link rel="icon" href="favicon.ico" type="image/x-icon">
<!-- Bootstrap CSS (Local) -->
<link href="css/bootstrap.min.css" rel="stylesheet"/>
<!-- Font Awesome CDN for LinkedIn icon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" integrity="sha384-GLhlTQ8iUNn1L10/2nfwD5Gz9U5Ll9TMiunC5b5STBAb5PP5d1PzQVfhvMJ/pBWE" crossorigin="anonymous">
</head>
<body>
<!-- Navbar Placeholder -->
<div id="navbar-placeholder"></div>
<!-- Page Content -->
<div class="container mt-5 mb-5" style="margin-top: 100px !important;">
<!-- YouTube Video Embed -->
<div class="embed-responsive embed-responsive-16by9 mb-4">
<iframe width="1120" height="630" src="https://www.youtube.com/embed/QCjshxMb__o" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<!-- Video Title -->
<h1 class="mb-3">Things I Do in a Day</h1>
<!-- Video Description -->
<p class="lead mb-4">What does a day in Justin's life look like?</p>
<!-- Comment Section -->
<div class="card">
<div class="card-header">
Comments
</div>
<div class="card-body">
<!-- Add your comment form or display existing comments here -->
<!-- For simplicity, you can use a simple textarea for comments -->
<form>
<div class="mb-3">
<label for="comment" class="form-label">Your Comment</label>
<textarea class="form-control" id="comment" rows="4" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Post Comment</button>
</form>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-dark text-white py-4">
<div class="container">
<div class="row">
<div class="col-md-6">
<ul class="list-unstyled">
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="col-md-6">
<ul class="list-unstyled">
<li>Email: justinlopez.business@gmail.com</li>
<li>Phone: (123) 456-7890</li>
<li><a href="https://www.linkedin.com/in/justin-lopez-73a1a9280/" target="_blank"><i class="fab fa-linkedin"></i> LinkedIn</a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Load Navbar -->
<script>
$(function(){
$("#navbar-placeholder").load("navbar.html");
});
</script>
</body>
</html>