-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-tmplt.html
138 lines (102 loc) · 3.89 KB
/
index-tmplt.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index Template</title>
<!----------------->
<!-- Stylesheets -->
<!----------------->
<!-- Global Stylesheet -->
<link rel="stylesheet" href="./style/style-tmplt.css">
<!-- <link rel="stylesheet" href="../style/product-template.css"> -->
<!------------------>
<!-- Google Fonts -->
<!------------------>
<!-- Abril Fatface -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet">
<!-- Work Sans -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<!-- Merriweather -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap"
rel="stylesheet">
</head>
<!------------------>
<!-- Body of page -->
<!------------------>
<body class="body" id="body">
<p id="body_p">body</p>
<!-- Header container -->
<header class="header" id="header">
<h1 class="logo">Main Header text goes here. </h1>
</header>
<!-- Navigation -->
<nav class="nav" id="header_nav_id">
<h2>Main Navigation</h2>
<ul class="main_nav" id="ul_id">
<li><a class="local" href="#">Home</a></li>
<li><a class="local" href="#">link1</a></li>
<li><a class="push" href="#">link2</a></li>
</ul>
</nav>
<!-- Main content -->
<main class="main" id="main_id">
<h2 id="main_p">main</h2>
<!-- Article division -->
<article class="article" id="article_id">
<h3>article</h3>
<!-- Content container -->
<section class="section" id="section_id">
<a href="#" class="a_class" id="a_id">
<h2 class="h2_class" id="h2_id">selection header text</h2>
<figure class="figure_img">
<img src="" alt="figure image here">
<figcaption>
<h3>figcaption text</h3>
</figcaption>
</figure>
<p class="descr">Descriptive text goes here.</p>
</a>
</section>
</article>
</main>
<!-- Side bar content -->
<aside class="sidebar" id="sidebar_id">
<h2>sidebar content</h2>
<p class="sidebarcontent">This where the content of the Sidebar goes.</p>
</aside>
<!-- Advertise content -->
<div class="advertise" id="ad_id">
<h2>Advertisements</h2>
<div class="badge-base LI-profile-badge" data-locale="en_US" data-size="medium" data-theme="light"
data-type="VERTICAL" data-vanity="tomhughessc" data-version="v1">
<a class="badge-base__link LI-simple-link" href="https://www.linkedin.com/in/tomhughessc?trk=profile-badge">Tom
Hughes
</a>
</div>
<div class="badge-base LI-profile-badge" data-locale="en_US" data-size="medium" data-theme="dark"
data-type="VERTICAL" data-vanity="tomhughessc" data-version="v1">
<a class="badge-base__link LI-simple-link" href="https://www.linkedin.com/in/tomhughessc?trk=profile-badge">Tom
Hughes
</a>
</div>
</div>
<!-- Footer styling -->
<footer class="footer" id="footer_id">
<h2>footer</h2>
<p class="copyright" id="copyright">Copyright © 2025 </p>
</footer>
</body>
<script src="https://platform.linkedin.com/badges/js/profile.js" async defer type="text/javascript"></script>
<!-- <script src="./js/script.js"></script> -->
</html>