-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesthtml.html
More file actions
99 lines (97 loc) · 3.24 KB
/
testhtml.html
File metadata and controls
99 lines (97 loc) · 3.24 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="./css/test-html.css">
</head>
<body>
<!--<nav>-->
<!-- <ul>-->
<!-- <li><a href="#">Home</a></li>-->
<!-- <li><a href="#">News</a></li>-->
<!-- <li><a href="#">Contact</a></li>-->
<!-- <li><a href="#">About</a></li>-->
<!-- </ul>-->
<!--</nav>-->
<article class="card">
<!-- <section>-->
<!-- <img src="images/profile.png" alt="profile-image" >-->
<!-- </section>-->
<!-- <section class="text-section">-->
<!-- <h2>Ron Swanson</h2>-->
<!-- <h3>Director</h3>-->
<!-- <hr>-->
<!-- </section>-->
<!-- <section class="icons">-->
<!-- <a href="#"><i class="fab fa-github"></i></a>-->
<!-- <a href="#"><i class="fab fa-twitter"></i></a>-->
<!-- <a href="#"><i class="fab fa-linkedin"></i></a>-->
<!-- </section>-->
</article>
</body>
<footer>
<div class="container">
<section class="top-footer">
<div class="logo-div">
<h1><a href="#">Logo</a></h1>
<a href="#">Sologan Company</a>
</div>
<ul>
<li><a href="#">Weebly Themes</a></li>
<li><a href="#">Pre-Sale FAQS</a></li>
<li><a href="#">Submit a Ticket</a></li>
</ul>
<ul>
<li><a href="#">Services</a></li>
<li><a href="#">Theme Tweak</a></li>
</ul>
<ul>
<li><a href="#">Showcase</a></li>
<li><a href="#">Widgetkit</a></li>
<li><a href="#">Support</a></li>
</ul>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Affiliates</a></li>
<li><a href="#">Resources</a></li>
</ul>
</section>
<div class="line"></div>
<section class="bottom-footer">
<div class="social-media-links">
<a href="#">
<span class="icon-wrapper">
<i class="fab fa-facebook-f"></i>
</span>
</a>
<a href="#">
<span class="icon-wrapper">
<i class="fab fa-twitter"></i>
</span>
</a>
<a href="#">
<span class="icon-wrapper">
<i class="fas fa-rss"></i>
</span>
</a>
<a href="#">
<span class="icon-wrapper">
<i class="fab fa-google-plus-g"></i>
</span>
</a>
<a href="#">
<span class="icon-wrapper">
<i class="fab fa-linkedin-in"></i>
</span>
</a>
</div>
<h5>@Copyright. All rights reserved.</h5>
</section>
</div>
</footer>
</html>