-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHTML5.txt
More file actions
83 lines (60 loc) · 1.32 KB
/
HTML5.txt
File metadata and controls
83 lines (60 loc) · 1.32 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
HTML5:
********************************************************************
* Types of inputs we have
- text
- email
- color
- date
- time
- password
- checkbox
- radio
- file
* Less known elements
- legend
- fieldset
- progress
- datalist
- sub
- sup
- picture
- source
- pre
- template
IMP points to be remembered:
---------------------------------------------------------
* Only .png images can only be transparent.
*
Useful sites:
--------------------------------------
* https://www.color-hex.com/
* https://source.unsplash.com/
* https://htmlcolorcodes.com/
* https://www.pexels.com/
* https://tools.dynamicdrive.com/favicon/
Common css reset things for any project:
-------------------------------------------------
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
html {
touch-action: manipulation;
-webkit-locale: "en";
}
body {
overflow-y: scroll;
font-family: Helvetica, Arial, sans-serif;
font-size: 12px;
background: #fff;
color: #1c1e21;
direction: ltr;
line-height: 1.34;
margin: 0;
padding: 0;
unicode-bidi: embed;
}
*************************************** Useful links *****************************************************
***** 5+ Must Know HTML Tags That Almost Nobody Knows --> by WDS
https://www.youtube.com/watch?v=iX_QyjdctsQ