-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
63 lines (60 loc) · 1.85 KB
/
test.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Test</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<!-- Placeholder -->
<div class="tmp" id="tmp">
<div class="tmp__container">
<div class="tmp__content">
<h1>Go back to main page</h1>
<div class="repo__btn"><a href="/index.html">Main page</div></a>
</div>
</div>
</div>
<!-- Test -->
<ul id="nav">
<li><a href="">Home</a></li>
<li><a href="">Shop</a></li>
<li><a href="">About Us</a></li>
<li><a href="">Contact Us</a></li>
</ul>
<table class="flat-table">
<tr>
<td>Row 1 - Column 1</td>
<td>Row 1 - Colunm 2 </td>
<td>Row 1 - Column 3 </td>
</tr>
<tr>
<td>Row 2 - Column 1</td>
<td>Row 2 - Column 2</td>
<td>Row 2 - Column 3</td>
</tr>
</table>
<!-- Footer Section -->
<div class="footer__con">
<div class="footer__links">
<div class="footer__link--wrapper">
<div class="footer__link--items">
<h2>About us</h2>
<a href="/sign-up">Do not sign up</a>
<a href="/sign-up">Bro</a>
<a href="/sign-up">Stop</a>
<a href="/sign-up">Terms of services</a>
</div>
</div>
</div>
</div>
</body>
</html>