-
Notifications
You must be signed in to change notification settings - Fork 0
/
Current.html
102 lines (100 loc) · 3.2 KB
/
Current.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!-- Creative Yarn Crafts -->
<!-- K0mputer N3rd -->
<!-- 01/16/2022 -->
<!-- Current.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="Styles\Styles.css" />
<title>Creative Yarn Crafts</title>
<link rel="icon" type="image/x-icon" href="./Media/GS-Icon.ico" />
<!-- Script to enable fontawesome -->
<script
src="https://kit.fontawesome.com/d5fdc24f4a.js"
crossorigin="anonymous"
></script>
<!-- Script for social media links -->
<script>
function social_alert() {
alert(
"Social media links are not yet implemented. Please check again in a few months."
);
}
</script>
</head>
<body>
<nav>
<ul>
<li>
<a style="padding: 1px" href="About.html">
<img
class="logo"
src="Media\Granny Square Letter A.png"
alt="Logo"
/>
</a>
</li>
<li><a href="Home.html">Home</a></li>
<li><a href="Tutorials.html">Tutorials</a></li>
<li><a href="Gallery.html">Gallery</a></li>
<li><a class="active" href="#home">Current</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Contact.html">Contact</a></li>
</ul>
</nav>
<br />
<div class="main">
<h6>Creative Yarn Crafts</h6>
<h1>Current Projects</h1>
<p>
There is always more than one project in my queue. I am usually thinking
about several projects, working on about three of them, and have a
project or two partially done but set to the side because something more
important or more interesting has come up. So here's what is currently
in my basket.
</p>
<hr />
<img
class="leftimage2"
src="Media\Granny Square Regular.png"
alt="Square"
/>
<img
class="rightimage2"
src="Media\Granny Square Letter A.png"
alt="Square"
/>
<h2>Crochet Alphabet</h2>
<p>
My main current project is to design crochet patterns for all the
letters of the alphabet. I have seen some online, but I was not
impressed with them. So I am designing my own, using an adapted granny
square for mounting them. This will result in an alphabet sampler
afghan, with squares for each letter of the alphabet, and regular granny
squares for the border around them.
</p>
</div>
<footer>
<p>
<a href="#" onclick="social_alert()">
<i class="fab fa-facebook-square fa-2x"></i>
</a>
<a href="#" onclick="social_alert()">
<i class="fab fa-instagram-square fa-2x"></i>
</a>
<a href="#" onclick="social_alert()">
<i class="fab fa-twitter-square fa-2x"></i>
</a>
<a href="#" onclick="social_alert()">
<i class="fab fa-youtube-square fa-2x"></i>
</a>
</p>
<p>
Website Design and Content Copyright © 2022 Creative Yarn Crafts
</p>
</footer>
</body>
</html>