-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDog.html
More file actions
28 lines (26 loc) · 1.05 KB
/
Dog.html
File metadata and controls
28 lines (26 loc) · 1.05 KB
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
# HTML-Projects
<!DOCTYPE html>
<html lang="en">
<title>My First Webpage</title>
<p>Hello, world!</p>
</html>
<a href="https://hips.hearstapps.com/hmg-prod/images/most-popular-dog-breeds-kerry-blue-terrier-68096bdb872b7.jpg?crop=0.668xw:1.00xh;0.0833xw,0">
Clickhere to view image
</a>
Coding Projects completed as part of my HTML course.
This Reository contains all coding projects completed as part of my HTML class
The purpose of this repository is to:
Practice writing clean and well-structured HTML
- Apply CSS styling techniques
- Track my progress using version control with Git and GitHub
- Build an online portfolio that showcases my development skills
All coursework for this class is developed locally and pushed to this repository regularly using GitHub Desktop.
<!-- Link to Assignment.html from Dog.html -->
<a href="Assignment.html">Go back to the Home Page</a>
<nav>
<ul>
<li><a href="Assignment.html">Home</a></li>
<li><a href="Dog.html">Dog Picture</a></li>
<li><a href="Dog_Video.html">Dog Video</a></li>
</ul>
</nav>