Skip to content

Commit

Permalink
New commit
Browse files Browse the repository at this point in the history
  • Loading branch information
OLT2000 committed Jul 15, 2024
1 parent 21c3031 commit d7edc51
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,34 @@ <h3>Here is a Red Panda</h3>
<!-- TODO[DONE]: update the email below - think about how the email link operate. Does it open in the same or new tab? -->
<a href="mailto:[email protected]" class="btn-blue">Contact Me</a>
</div>

<div class="card-white">
<a href="my_first_blog.html">First Blog Post</a>
</div>

<div class="card-white">
<!-- ADD CODE HERE -->
<h3>Create a New Blog Post</h3>
<h3>Add a new blog</h3>
<form action="submit_blog_post.html" method="post">
<div class="form-group">
<label for="title">Title:</label>
<input type="text" id="title" name="title" required>
</div>
<div class="form-group">
<label for="date">Date:</label>
<input type="date" id="date" name="date" required>
</div>
<div class="form-group">
<label for="body">Body:</label>
<textarea id="body" name="body" rows="10" required></textarea>
</div>
<div class="form-group">
<button type="submit" class="btn-blue">Submit</button>
</div>
</form>
</div>

<div class="card-white">
<h3>Follow Me</h3>
<!-- TODO[DONE]: add some social links here and use Fontawesome icons -->
Expand Down

0 comments on commit d7edc51

Please sign in to comment.