-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
114 lines (111 loc) · 4.1 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!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" />
<title>Frontend Mentor Solutions</title>
<link
rel="shortcut icon"
href="./assets/images/icons/favicon-32x32.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="./assets/styles.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js"></script>
</head>
<body>
<div
class="magic-area magic-area--content"
data-target-class=".project-wrap"
data-tween-back="false"
aria-hidden="true"
></div>
<main>
<nav>
<img src="./assets/images/icons/favicon-32x32.png" alt="" />
<h1>Frontend Mentor Solutions</h1>
</nav>
<section class="grid-wrapper" id="app">
<!-- <article class="project featured">
<div class="project-wrap" href="#">
<div class="project__img-wrap">
<img class="project__img" src="./assets/images/projects/1.jpg" />
</div>
<div class="project__content">
<h3 class="project__title">
Responsive Mondrian art with CSS grid
</h3> -->
<!-- <div class="project__techs">
<span>Tech:</span>
<img src="./assets/images/icons/HTML.png" alt="" />
<img src="./assets/images/icons/HTML.png" alt="" />
<img src="./assets/images/icons/HTML.png" alt="" />
</div> -->
<!-- <p class="project__description">
Make a responsive Mondrian art with CSS grid layout.
</p>
</div>
<div class="project__links">
<a href="" class="flex web-link"
>Live <img src="./assets/images/icons/globe.png" alt=""
/></a>
<a href="" class="flex github-link"
>Source Code <img src="./assets/images/icons/github.svg" alt=""
/></a>
</div>
</div>
</article> -->
<!-- <article class="project featured">
<div class="project-wrap" href="#">
<div class="project__img-wrap">
<img class="project__img" src="./assets/images/projects/1.jpg" />
</div>
<div class="project__description">
<h3 class="project__title">
title
</h3>
<p class="c-article__content project__content">
tcontent </p>
</div>
<div class="project__links">
<a href="" class="flex web-link"
>Live <img src="./assets/images/icons/globe.png" alt=""
/></a>
<a href="" class="flex github-link"
>Source Code <img src="./assets/images/icons/github.svg" alt=""
/></a>
</div>
</div>
</article>
<article class="project featured">
<div class="project-wrap" href="#">
<div class="project__img-wrap">
<img class="project__img" src="./assets/images/projects/1.jpg" />
</div>
<div class="project__description">
<h3 class="project__title">
Responsive Mondrian art with CSS grid
</h3>
<p class="c-article__content project__content">
Make a responsive Mondrian art with CSS grid layout.
</p>
</div>
<div class="project__links">
<a href="" class="flex web-link"
>Live <img src="./assets/images/icons/globe.png" alt=""
/></a>
<a href="" class="flex github-link"
>Source Code <img src="./assets/images/icons/github.svg" alt=""
/></a>
</div>
</div>
</article> -->
</section>
</main>
<footer class="attribution">
Coded by <a href="#">Cedrick Garcia</a>.
</footer>
<script src="./assets/js/projects.js"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>