-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
133 lines (133 loc) · 4.06 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
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
<!DOCTYPE html>
<html lang="en">
<link />
<!--opening tag-->
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>100 days of code</title>
<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=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles/shared.css" />
<link rel="stylesheet" href="styles/index/index.css" />
<script scr="/scripts/index.js"></script>
</head>
<body>
<header>
<!--navigation bar-->
<div id="page-logo">
<a href="/"><img src="/assets/icons/code.png" /></a>
</div>
<nav>
<ul>
<li><a href="/">Menu one</a></li>
<li><a href="/">Menu two</a></li>
<li><a href="/">Menu three</a></li>
</ul>
</nav>
</header>
<main>
<article></article>
<aside></aside>
<!--sidebar-->
<!-- image is treated like text-->
<h1>100 days of code</h1>
<section>
<div id="about">
<img src="assets/images/blocks.png" alt="blocks" />
<h2>Full stack development course</h2>
<p>
<strong>The most important</strong> HTML & CSS
<span class="code tint1"><elements></span>, JS scripts and
theory described in
<a
class="primary"
href="https://www.udemy.com/course/100-days-of-code/?couponCode=KEEPLEARNING"
>the course</a
>
</p>
<button class="primary">Primary button</button>
<button class="secondary">Secondary button</button>
</div>
</section>
<section id="list">
<h3>HTML & CSS</h3>
<ul>
<!-- Unordered list. For ordered use <ol> -->
<li>
<a class="primary" href="pages/box.html"
>Inline and block. Box model</a
>
</li>
<li>
<a class="primary" href="pages/position.html"
>Position and measurements</a
>
</li>
<li>
<a class="primary" href="pages/flex.html"
>Flex, grid and page structure</a
>
</li>
<li>
<a class="primary" href="pages/responsive.html"
>Responsive web design</a
>
</li>
<li>
<a class="primary" href="pages/beautiful.html"
>Beautiful websites & CSS animations</a
>
</li>
<li>
<a class="primary" href="pages/forms.html">Forms</a>
</li>
<li>
<a class="primary" href="pages/javascript.html"
>Javascript exercises</a
>
</li>
<li>
<a class="primary" href="pages/input.html"
>Interactive inputs. Loops & conditions</a
>
</li>
<li>
<a class="primary" href="pages/tic-tac-toe.html">Tic-Tac-Toe</a>
</li>
<li>
<a class="primary" href="pages/bootstrap.html">Bootstrap and third party packages</a>
</li>
<li>
<a class="primary" href="pages/node.html">Node JS and Express package</a>
</li>
</ul>
</section>
</main>
<footer>
<p>2024</p>
<ul>
<li>
<a href="https://instagram.com" target="_blank"
><img src="/assets/icons/instagram.png" alt="social"
/></a>
</li>
<li>
<a href="https://facebook.com" target="_blank"
><img src="/assets/icons/facebook.png" alt="social"
/></a>
</li>
<li>
<a href="https://telegram.com" target="_blank"
><img src="/assets/icons/telegram.png" alt="social"
/></a>
</li>
</ul>
</footer>
</body>
<!--closing tag-->
</html>