-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutme.html
73 lines (73 loc) · 2.58 KB
/
aboutme.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=7" />
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="Dogs,Dogs Breeds,Information About Dogs" />
<link rel="shortcut icon" href="./images/Logo.png" type="image/x-icon" />
<link rel="stylesheet" href="./style/style.css" />
<link rel="apple-touch-icon" href="./images/Logo.png" />
<title>Dogs</title>
</head>
<body>
<header>
<nav class="navbar">
<div class="main-name">
<h1>Dogs Breeds Finder</h1>
</div>
<ul class="navlinks">
<li><a href="./">Home</a></li>
<li><a href="./images.html">Images</a></li>
<li><a href="./breeds.html">Breeds</a></li>
<li class="active"><a href="./aboutme.html">About Me</a></li>
</ul>
<div id="hamburger">
<div class="hamburger"></div>
</div>
</nav>
</header>
<section>
<div class="heading position">
<h2>About Me</h2>
</div>
<div class="para">
<p>
I am Vinay Kanse Self-Learning programmer. This is my First Real-World
Project. I used
<a target="_blank" href="https://www.figma.com/"> Figma</a>
For Designing and know the languages
<a target="_blank" href="https://www.w3schools.com/html/">HTML</a>
,
<a target="_blank" href="https://www.w3schools.com/css/">CSS</a>, and
<a target="_blank" href="https://www.w3schools.com/js/">JAVASCRIPT</a>
.My Goal is to become a
<a
target="_blank"
href="https://www.w3schools.com/whatis/whatis_fullstack.asp"
>Full Stack Web Developer</a
>. In this project, I used
<a target="_blank" href="https://thedogapi.com/">DogAPI</a> to fetch
data of dogs. Thank You for visiting and follow me on
<a target="_blank" href="https://github.com/VinayKanase/">GitHub</a>.
</p>
</div>
</section>
<footer>
<div class="footer-container">
<div class="myname">
<a href="./about.html">
©
<address>Vinay Kanse</address>
</a>
</div>
<div class="github">
<a href="https://github.com/VinayKanase/">GitHub</a>
</div>
</div>
</footer>
<script src="./app.js"></script>
</body>
</html>