forked from Steven24K/TheDesignWeb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (38 loc) · 1.5 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Design Web</title>
<link rel="stylesheet" href="./css/homepage.css" />
</head>
<body>
<div class="container">
<div class="header">
<h1>Welcome to the design web</h1>
<p>Simplicity is the ultimate sophistication</p>
</div>
<div class="content">
<h2>Check out these interesting designs from our community</h2>
<ul id="webpages-list">
<!-- <li>
<div class="card">
<img src="./the-basic-styleguide/images/photo-1726853546098-380e29da9e31.avif" alt="Design Thumbnail">
<div class="card-content">
<h3>The Basic Styleguide</h3>
<p>This guide helps you get started with essential design principles and guidelines for
clean, effective web design.</p>
<a href="./the-basic-styleguide/index.html">Check it out</a>
</div>
</div>
</li> -->
</ul>
</div>
<div class="footer">
<p>
Add your own styleguide through our <a href="https://github.com/Steven24K/TheDesignWeb/" target="_blank">GitHub</a> repository!
</p>
</div>
</div>
<script src="./js/main.js"></script>
</body>
</html>