-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.html
More file actions
32 lines (32 loc) · 1.02 KB
/
products.html
File metadata and controls
32 lines (32 loc) · 1.02 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Hacknock - Products</title>
<link rel="stylesheet" href="./css/products.css" />
<link rel="stylesheet" href="./css/header-footer.css" />
</head>
<body>
<header>
<img src="./img/hacknock_title.png" class="logo" />
<a href="./products.html" class="link_menu">Products</a>
<a href="./members.html" class="link_menu">Members</a>
<a href="./index.html" class="link_menu">Top</a>
</header>
<section>
<h1 class="title">Products</h1>
<div class="product">
<div class="icon_wrapper">
<img src="./img/leadyou.png" class="icon_product" />
<p class="name_product">
<a href="https://hacknock.github.io/leadyou" class="linke_product">LEADYOU</a>
</p>
</div>
<p class="description">
LEADYOU is a web application that helps you to write a README easily.
</p>
</div>
</section>
<footer>© Hacknock</footer>
</body>
</html>