-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
232 lines (203 loc) · 11.2 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<title>Web Design Resources</title>
</head>
<body>
<div id="wrapper">
<!-- Nav Bar -->
<nav class="navbar navbar-light sticky-top navbar-expand-lg navbar-expand-md navbar-expand-sm ">
<!-- Brand/logo -->
<a class="navbar-brand text-white" href="#">Web Design Resources<svg width="2em" height="2em" viewBox="0 0 16 16" class="bi bi-book" fill="white" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M3.214 1.072C4.813.752 6.916.71 8.354 2.146A.5.5 0 0 1 8.5 2.5v11a.5.5 0 0 1-.854.354c-.843-.844-2.115-1.059-3.47-.92-1.344.14-2.66.617-3.452 1.013A.5.5 0 0 1 0 13.5v-11a.5.5 0 0 1 .276-.447L.5 2.5l-.224-.447.002-.001.004-.002.013-.006a5.017 5.017 0 0 1 .22-.103 12.958 12.958 0 0 1 2.7-.869zM1 2.82v9.908c.846-.343 1.944-.672 3.074-.788 1.143-.118 2.387-.023 3.426.56V2.718c-1.063-.929-2.631-.956-4.09-.664A11.958 11.958 0 0 0 1 2.82z"/>
<path fill-rule="evenodd" d="M12.786 1.072C11.188.752 9.084.71 7.646 2.146A.5.5 0 0 0 7.5 2.5v11a.5.5 0 0 0 .854.354c.843-.844 2.115-1.059 3.47-.92 1.344.14 2.66.617 3.452 1.013A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.276-.447L15.5 2.5l.224-.447-.002-.001-.004-.002-.013-.006-.047-.023a12.582 12.582 0 0 0-.799-.34 12.96 12.96 0 0 0-2.073-.609zM15 2.82v9.908c-.846-.343-1.944-.672-3.074-.788-1.143-.118-2.387-.023-3.426.56V2.718c1.063-.929 2.631-.956 4.09-.664A11.956 11.956 0 0 1 15 2.82z"/>
</svg></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo02"
aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav ml-auto ">
<li class="nav-item">
<a class="nav-link text-white" href="#">Nicce</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="#">Contact</a>
</li>
</ul>
<form class="form-inline my-2 my-md-0">
<input class="form-control" type="text" placeholder="Search" aria-label="Search">
</form>
</div>
</nav>
<!-- <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExample07" aria-controls="navbarsExample07" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbars">
<ul class="navbar-nav mr-auto">
<li class="nav-items active">
<a class="nav-link text-white" href="#">Web Design Resources <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Login</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="dropdown07" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Gallery</a>
<div class="dropdown-menu" aria-labelledby="dropdown07">
<a class="dropdown-item text-secondary" href="#">Niice Site</a>
<a class="dropdown-item text-secondary" href="#">Download</a>
</div>
</li>
</ul>
<form class="form-inline my-2 my-md-0">
<input class="form-control" type="text" placeholder="Search" aria-label="Search">
</form>
</div> -->
</div>
<!-- Section 1 -->
<main role="main" class="container">
<div class="starter-template">
<div class="row">
<div class="col">
<h1>Web Development Resources List</h1>
<h2>Section 1: Editor tools</h2>
<ul>
<a href="https://code.visualstudio.com/" target="_blank">
<li>VS Code <span>Text Editor</span></li>
</a>
<a href="https://code.visualstudio.com/" target="_blank">
<li>VS Code <span>Extensions</span></li>
</a>
<a href="https://www.google.com" target="_blank">
<li>Google Chrome Browser </li>
</a>
<a href="https://codepen.io/" target="_blank">
<li>Online code editor <span>Code Pen</span></li>
</a>
<a href="ttp://www.google.com/webmasters/tools/mobile-friendly/" target="_blank">
<li>Check if <span>mobile friendly website</span></li>
</a>
</ul>
</div>
</div>
</div>
<!-- Section 2 -->
<div class="container">
<div class="row">
<div class="col">
<h2>Section 2: Reference Sources</h2>
<ul>
<a href="https://developer.mozilla.org" target="_blank">
<li><span>MDN </span> documentation</li>
</a>
<a href="https://www.w3schools.com" target="_blank">
<li><span>W3Schools</span> documentation</li>
</a>
<a href="https://www.google.com" target="_blank">
<li><span>devdocs</span> .io</li>
</a>
<a href="https://docs.emmet.io/cheat-sheet/" target="_blank">
<li><span>emmet</span> cheatsheet</li>
</a>
</ul>
</div>
</div>
</div>
<!-- Section 3 -->
<div class="container">
<div class="row">
<div class="col">
<h2>Section 3: HTML</h2>
<ul>
<a href="https://web.stanford.edu/group/csp/cs21/htmlcheatsheet.pdf" target="_blank">
<li><span>HTML Cheatsheet </span> by Stanford University</li>
</a>
<a href="https://www.fileformat.info/info/charset/UTF-8/list.htm" target="_blank">
<li>List of <span>UTF-8 characters</span></li>
</a>
<a href="https://css-tricks.com/snippets/html/glyphs/" target="_blank">
<li><span>glyphs</span></li>
</a>
</ul>
</div>
</div>
</div>
<!-- Section 4 -->
<div class="container">
<div class="row">
<div class="col">
<h2>Section 3: CSS</h2>
<ul>
<h3>3.1 Sources</h3>
<a href="https://web.stanford.edu/group/csp/cs21/csscheatsheet.pdf" target="_blank">
<li><span>CSS Cheatsheet </span> by Stanford University</li>
</a>
<a href="https://jigsaw.w3.org/css-validator/validator.html.en#validate_by_input+with_options" target="_blank">
<li>W3C <span>CSS validation </span></li>
</a>
<a href="https://meyerweb.github.io/csstdg4figs/" target="_blank">
<li><span>CSS: The Definitive Guide</span> 4th edition</li>
</a>
<a href="https://css-tricks.com/" target="_blank">
<li>Overview of <span>CSS-tricks</span></li>
</a>
<a href=https://cssreference.io/ target="_blank">
<li>Overview of <span>CSS-reference</span></li>
</a>
<a href=https://estelle.github.io/ target="_blank">
<li>Frontend Master <span>CSS-In Depth</span></li>
</a>
<a href="https://necolas.github.io/normalize.css/" target="_blank">
<li>Download <span>Normalize CSS</span></li>
</a>
<a href="https://meyerweb.com/eric/tools/css/reset/" target="_blank">
<li>Download <span>CSS Reset</span> from meyerweb</li>
</a>
<a href="http://pxtoem.com/" target="_blank">
<li><span>Size Convert</span> px to rem</li>
</a>
<h3>3.2 Layout</h3>
<a href="https://gridbyexample.com/examples/#example11" target="_blank">
<li><span>Grid by Example</span> Everything you need to learn CSS Grid Layout</li>
</a>
<a href="http://www.responsivegridsystem.com/" target="_blank">
<li>Download <span>RWD Grid System CSS</span></li>
</a>
<a href="https://kyusuf.com/post/almost-complete-guide-to-flexbox-without-flexbox/" target="_blank">
<li>Guide to <span>flexbox</span> by Kenan Yusuf</li>
</a>
<a href="http://flexboxfroggy.com/#zh-tw" target="_blank">
<li>Game <span>flexbox froggy</span></li>
</a>
<a href="https://codepip.com/games/grid-garden/" target="_blank">
<li>Game <span>grid-garden</span></li>
</a>
<h3>3.3 Selector</h3>
<a href="https://estelle.github.io/cssmastery/selectors/#slide1" target="_blank">
<li><span>CSS Selector</span> </li>
</a>
<a href="https://www.dropbox.com/s/h2hni9o1m1di989/CSS%20selectors%20cheatsheet.pdf?dl=0" target="_blank">
<li>Download <span>CSS Selector</span> cheatsheet </li>
</a>
</ul>
</div>
</div>
</div>
</main><!-- /.container -->
<footer>Design by Christine Chan</footer>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="../assets/js/vendor/jquery.slim.min.js"><\/script>')</script><script src="../assets/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>