-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathparagraph.html
More file actions
254 lines (210 loc) · 5.66 KB
/
Copy pathparagraph.html
File metadata and controls
254 lines (210 loc) · 5.66 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
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<p>### Front-end Technologies
- HTML
- CSS
- JavaScript
- Booststrap framework
- ReactJS
### Backend Technologies
- Node.js
- express.js
- nodemoon
- cors
- dotenv
- PHP
- C#
- Java
- Python
### Databases
- MongoDb
- Mysql
- SQLite
- Firebase
- Postgreessql
- Oracle
+ VCS (Source code Management)
- Distributed VCS
- Git, Mercurial
- Remote(Central) VCS
- Github, Bitbucket
### Git
- git init
- git add filename
- git add filename1 filename5 filename100
- git add . or git add --all
- git status
- Do git configurations (set user .name and user .email)
- commit data with commit message
### welcome tosvec
### HTML5
- Hyper Text Markup Language
- Semantic Elements
- header
- section
- article
- aside
- footer
- table
- Block Level Elements
- h1 to h6
- paragraph
- div
- all semantic elements
- Text will start from newline
- Inline Elements
- span
- img
- a
- nav
- form
- input
- textarea
- legend
- sup
- sub
- ul
- ol
## Task :
======
- Audio
- Video
- Canvas
- Progress
- Datalist
- Meter
- Select
### CSS
+ Cascading Style Sheets
+ Types of CSS
- Inline CSS
- Internal CSS
- External CSS
+ Syntax of CSS
```
selector {
css properties
}
```
#### Selectors
+ Simple selectors
- Universal Selector (*)
- By Element Name
- Grouping selector (,)
- Class Selector
- Id selector
+ Combinators
+ Desecendent selector ( )
+ Child selector (>)
+ Adjacent sibling selector (+)
+ General sibling selector (~)
+ Pseudo class selector
+ Pseudo element selector
+ Attribute selector
### Box Model
+ margin
+ border
+ padding
- padding : 10px (for all adjacent sides)
- padding : 10px 30px (10px for top & bottom; 30px for left & ight)
- padding : 10px 300px 50px (10px for top; 300px for for left & right; 50px for bottom)
- padding : 10px 30px 4px 50px (top,right,bottom,left)
+ width
- 1rem=16px
+ display
- none
- inline
- block
- inline-block
+ position
- static
- relative
- absolute
- fixed
- sticky
+ algin-content
+ algin-items
+ algin-self
#### Responsive Web Design
#### Flex-box
- display
- flex
- flex-wrap
- justify-content
- flex-direction
- flex-flow
## Task2:
- index pagr
- registration page
- login page
### Media Quries
- Extra Small Devices (Mobiles)
- max-width:600px
- Small Devices (Large Phones)
- min-width:600px
- max-width:768px
- Medium Devices (Small Laptops)
- min-width:768px
- Large Devices (Large Laptops or Desktops)
- min-width:992px
- Extra Large Devices ()
- min-width:1200px
```
@media only screen (max-width:320px) and (max-width:500px{
CSS Code
}
```
### Bootstrap 4.6
- It is a CSS framework
## Task3:
- Navbar with Responsive
- module (Collections of Functions and classes)
- Package (Collections of modules)
- Library (Collection of packages)
- Framework (Collections of library)
+ module --> Package --> Library --> Framework
+ Type of Modes
- Offline
- Online
-CDN links
+ background-color -bg
+ text-white
+ Margin in Booststrap (m-* (0-5))
- 0 --> 0rem
- 1 --> 0.25rem
- 2 --> 0.5rem
- 3 --> 1rem
- 4 --> 1.5rem
- 5 --> 3rem
- m (margin in all directions)
- ml-5 (margin-left)
- mt (margin-top)
- mb (margin-bottom)
- mr (margin-right)
- mt (margin-top)
+ padding (padding-left --> p1-5)
+ colors
- primary
- secondary
- info
- success
- warning
- danger
- light
- dark
- white
+ We can use color classes for
- Buttons (btn btn-primary)
- text (text-white)
- background (bg-secondary)
- alerts (alert alert-primary)
+ Grid System
- col-sm-12
- sm (small devices)
- md (medium devices)
- lg (large devices)
- xl (Extra large devices)
##### Reference links
- [github login](https://github.com/)
- [freeSVG](https://freesvg.org/)
- [Flation](https://www.flaticon.com/)
- [html color codes](https://htmlcolorcodes.com/)
- [webaim(for checking contrast)](https: //webaim.org/resources/contrastchecker/)</p>