-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (77 loc) · 3.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Solved FrontendMentor Challenges</title>
<link rel="stylesheet" href="./src/css/style.css">
</head>
<body>
<main class="cards">
<div class="card">
<a class="imagelink" href="./news-homepage/index.html">
<img src="./src/images/news-homepage.webp" alt='Screenshot of "News homepage"' loading="lazy">
</a>
<div class="content">
<a class="title" href="./news-homepage/index.html">
<h2>News homepage</h2>
</a>
<ul class="tags">
<li class="html">HTML</li>
<li class="css">CSS</li>
<li class="js">JS</li>
</ul>
<a href="./news-homepage/README.html" class="readme">Details</a>
</div>
</div>
<div class="card">
<a class="imagelink" href="./intro-section-with-dropdown-navigation/index.html">
<img src="./src/images/intro-section-with-dropdown-navigation.webp" alt='Screenshot of "Intro section with dropdown navigation"' loading="lazy">
</a>
<div class="content">
<a class="title" href="./intro-section-with-dropdown-navigation/index.html">
<h2>Intro section with dropdown navigation</h2>
</a>
<ul class="tags">
<li class="html">HTML</li>
<li class="css">CSS</li>
<li class="js">JS</li>
</ul>
<a href="./intro-section-with-dropdown-navigation/README.html" class="readme">Details</a>
</div>
</div>
<div class="card">
<a class="imagelink" href="./sunnyside-agency-landing-page/index.html">
<img src="./src/images/sunnyside-agency-landing-page.webp" alt='Screenshot of "Sunnyside agency landing page"' loading="lazy">
</a>
<div class="content">
<a class="title" href="./sunnyside-agency-landing-page/index.html">
<h2>Sunnyside agency landing page</h2>
</a>
<ul class="tags">
<li class="html">HTML</li>
<li class="css">CSS</li>
</ul>
<a href="./sunnyside-agency-landing-page/README.html" class="readme">Details</a>
</div>
</div>
<div class="card">
<a class="imagelink" href="./advice-generator-app/index.html">
<img src="./src/images/advice-generator-app.webp" alt='Screenshot of "Advice generator app"' loading="lazy">
</a>
<div class="content">
<a class="title" href="./advice-generator-app/index.html">
<h2>Advice generator app</h2>
</a>
<ul class="tags">
<li class="html">HTML</li>
<li class="css">CSS</li>
<li class="js">JS</li>
<li class="api">API</li>
</ul>
<a href="./advice-generator-app/README.html" class="readme">Details</a>
</div>
</div>
</main>
</body>
</html>