-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogEntry1.html
52 lines (52 loc) · 2.68 KB
/
blogEntry1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset = "UTF-8">
<meta name="viewport" content ="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Benedict Ortiz - Personal Website</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id = "root">
<div>
<div class = "content">
<ul class = "header">
<li><a class ="home-button" href="/index.html">Home</a></li>
<li><a class ="resume-link" href="/files/resume_benortiz.pdf">Resume</a></li>
<li><a class ="blog-button" href="/blog.html">Blog</a></li>
<li><a class ="project-button" href="/project.html">Projects</a></li>
</ul>
<h1>Benedict Ortiz</h1>
<div class = "social">
<a href ="https://github.com/Ben-Ortiz" target ="_blank" rel="noopener noreferrer">
<img src = "images/icon-github.svg" alt ="github logo">
</a>
<a href ="mailto:[email protected]" target ="_blank" rel="noopener noreferrer">
<img src = "images/icon-mail.svg" alt ="linkedin logo">
</a>
<a href ="https://www.linkedin.com/in/benedictortiz/" target ="_blank" rel="noopener noreferrer">
<img src = "images/icon-linkedin.svg" alt ="linkedin logo">
</a>
</div>
<div class = "blog heading">
<h3>My Blog</h3>
</div>
<br>
<div class = "blog">
<div class ="blogEntry">
<h2>This is my first blog post</h2>
<p>
<em>September 19, 2022</em>
</p>
<p>
I just wanted to make this post to create my first blog post on this website. Honestly I don't know what to talk about. Other than I'm trying to learn how to make a blog post section here. I'm wondering how to do this better. Since I assumed I would make a section of the website where I can submit blog posts. Like how some websites do. But I guess this is the way to do it.
</p>
</div>
</div>
</div>
</div>
</div>
<script src = "js/index.js"></script>
</body>
</html>