Test Profile
1<!doctype html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8" />
5 <meta
6 name="description"
7 content="Professional and Freelance Web Developer"
8 />
9 <meta name="keywords" content="dev, portfolio, freelance, websites" />
10 <meta name="robots" content="index, follow" />
11 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
12 <link rel="preconnect" href="https://fonts.googleapis.com" />
13 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
14 <link
15 href="https://fonts.googleapis.com/css2?family=Slabo+13px:wght@400;700&display=swap"
16 rel="stylesheet"
17 />
18 <!--Scripts-->
19 <script defer src="Javascript/Observer.js"></script>
20 <script defer src="Javascript/Counter.js"></script>
21 <!--CSS-->
22 <link rel="stylesheet" href="/css/Projects.css" />
23 <link rel="stylesheet" href="/css/Navbar.css" />
24 <link rel="stylesheet" href="/css/Footer.css" />
25 <title>Danny B Dev</title>
26 </head>
27 <body>
28 <!--NAV-->
29 <nav class="Navbar">
30 <div></div>
31 <a class="Navbar-Brand" href="index.html">Danny <span>B</span> Dev</a>
32
33 <ul class="Navbar-List">
34 <a class="NavBar-List-Link" href="/Blog.html"
35 ><li class="NavBar-List-Item">Learn</li></a
36 >
37 <a class="NavBar-List-Link" href="/Projects.html">
38 <li class="NavBar-List-Item">Projects</li></a
39 >
40 </ul>
41 </nav>
42 <section id="Websites">
43 <h2 class="Websites-Title fade">
44 <em><span class="Projects-Heading">Featured Sites</span></em>
45 </h2>
46
47 <div class="Grid-Container fade">
48 <a href="https://emeraldyardsdayton.com/">
49 <div class="Card">
50 <img
51 alt="Image of Emerald Yards Webiste"
52 class="Card-Image"
53 src="/Images/EmeraldYards.webp"
54 />
55 <p class="Card-Title">Emerald Yards</p>
56 </div>
57 </a>
58
59 <a href="https://cosmic-conkies-e0b75a.netlify.app/">
60 <div class="Card">
61 <img
62 alt="Image of Dayton Disc Golf Webiste"
63 class="Card-Image"
64 src="/Images/DaytonDiscGolf.webp"
65 />
66 <p class="Card-Title">Dayton Disc Golf</p>
67 </div>
68 </a>
69
70 <a href="https://fs-cards.netlify.app/">
71 <div class="Card">
72 <img
73 alt="Image of Flash Cards app"
74 class="Card-Image"
75 src="/Images/flashcards.png"
76 />
77 <p class="Card-Title">Flash Cards App</p>
78 </div>
79 </a>
80 </div>
81 </section>
82 <section id="Footer">
83 <nav class="LinkNav">
84 <ul>
85 <li>
86 <a target="blank" href="https://github.com/Dburrall"
87 ><img
88 class="Footer-Icon"
89 src="Images/Github-Icon-Gray.png"
90 alt="Github Logo"
91 /></a>
92 </li>
93 </ul>
94 </nav>
95 </section>
96 </body>
97</html>