forked from Solirius/training_github_pages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 --> | ||
|