-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
43 lines (43 loc) · 1.57 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>codecorgi - the holiest grail</title>
<meta name="description" content="The Holiest grail">
<meta name="author" content="codecorgi">
<link rel="stylesheet" href="./css/reset.css?v=1.0">
<link rel="stylesheet" href="./css/app.css?v=1.0">
</head>
<body>
<header>
<a href="./"><img src="./img/logo.png" alt="codecorgi logo"></a>
</header>
<nav>
<a href="#">Home</a>
<a href="#">Challenges</a>
<a href="#">About</a>
</nav>
<main>
<section>
<h1>Home</h1>
<p><strong>Master Your Craft and Build A Portfolio with FREE Coding Challenges.</strong></p>
</section>
</main>
<aside>
<h2>Visit our friends:</h2>
<div class="square-friend">
<a href="https://corgiaid.org/wp/" target="_blank" title="Corgi Aid">
<img src="./img/partners/corgi-aid.jpg" alt="Corgi Aid">
</a>
<p>CorgiAid helps corgis and corgi mixes get medical care so they can become adoptable and also lends carts to corgis with mobility issues.</p>
</div>
<div class="square-friend">
<a href="https://en.wikipedia.org/wiki/Pembroke_Welsh_Corgi" target="_blank" title="Corgi information in wikipedia">
<img src="./img/partners/corgi-wiki.JPG" alt="Corgi in Wikipedia">
</a>
<p>Learn more about corgis in Wikipedia, the free encyclopedia.</p>
</div>
</aside>
<script src="./js/app.js"></script>
</body>
</html>