forked from bradtraversy/svg-css-generator-examples
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (91 loc) · 2.61 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
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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="global/global.css" />
<title>CSS Generator Examples</title>
</head>
<body>
<div class="home">
<div class="home__main">
<h1>CSS & SVG Generator Examples</h1>
<p>
10 Different examples of tiny projects using CSS and SVG generators
</p>
<a class="btn" href="https://github.com/bradtraversy/css-generator-examples"
><i class="fa-brands fa-github"></i> GitHub Repo</a
>
<p class="home__info">Generator links are in the bottom left corner of each page</p>
</div>
<div>
<h3>CSS Shadow</h3>
<a href="/shadow/">
<img src="/global/img/shadow.png" alt="" />
</a>
</div>
<div>
<h3>Pattern Background</h3>
<a href="/pattern/">
<img src="/global/img/pattern.png" alt="" />
</a>
</div>
<div>
<h3>SVG Background</h3>
<a href="/svg-background/">
<img src="/global/img/svgbg.png" alt="" />
</a>
</div>
<div>
<h3>Fancy Border Radius</h3>
<a href="/border-radius/">
<img src="/global/img/radius.png" alt="" />
</a>
</div>
<div>
<h3>CSS Gradient</h3>
<a href="/gradient/">
<img src="/global/img/grad.png" alt="" />
</a>
</div>
<div>
<h3>Glassmorphism</h3>
<a href="/glassmorphism/">
<img src="/global/img/glass.png" alt="" />
</a>
</div>
<div>
<h3>SVG Waves</h3>
<a href="/waves/">
<img src="/global/img/waves.png" alt="" />
</a>
</div>
<div>
<h3>SVG Blobs</h3>
<a href="/blobs/">
<img src="/global/img/blobs.png" alt="" />
</a>
</div>
<div>
<h3>CSS Grid</h3>
<a href="/grid/">
<img src="/global/img/grid.png" alt="" />
</a>
</div>
<div>
<h3>Neomorphism</h3>
<a href="/neomorphism/">
<img src="/global/img/neo.png" alt="" />
</a>
</div>
<script src="global/nav.js"></script>
</body>
</html>