-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathme_html_css.tar
More file actions
136 lines (120 loc) · 6 KB
/
me_html_css.tar
File metadata and controls
136 lines (120 loc) · 6 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
index.html 000644 101065 101065 00000003725 14001002132 011241 0 ustar 00 000000 000000 <!-- Tells browser HTML5 is used -->
<!DOCTYPE html>
<!-- Parent tag of all other tags -->
<html>
<!-- Contains tags to set metadata for the HTML document -->
<head>
<!-- Set text to be shown on the browser's title bar -->
<title>Getting Started with HTML</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<!-- Contains tags to set content of the HTML document -->
<body>
<!-- Set a header using h1 tag -->
<div id="title">
<h1>Learning HTML by doing!</h1>
<div id="topics-learnt">Topics learnt: HTML, CSS</div>
</div>
<div class="hero-image">
<img
src="https://images.unsplash.com/photo-1461749280684-dccba630e2f6?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80"
/>
</div>
<div class="container">
<h3>HTML</h3>
<!-- div tag divides content across sections -->
<div class="tile" id="tile1">
<p>All HTML tags go inside the "html" element</p>
<a href="https://www.crio.do">More</a>
</div>
<div class="tile">
<p>"title" tag content is displayed on the browser's title bar</p>
<a href="https://www.crio.do">More</a>
</div>
<div class="tile">"div" tag divides content across sections</div>
<div class="tile">"b" tag makes text bold</div>
<div class="tile">Class attribute groups HTML elements</div>
<div class="tile">
Id attribute can be used to uniquely identify an element
</div>
<div class="tile">
Excepteur dolor ex ex tempor officia amet eu. Ea dolor ea laboris
laborum irure duis. Esse ea aute eiusmod fugiat magna minim occaecat.
Proident reprehenderit Lorem esse Lorem quis elit ex veniam enim. In
excepteur eu pariatur fugiat ea exercitation non dolore.
</div>
</div>
<!-- p tag's used to wrap text -->
<!-- b tag makes the text it wrap, bold -->
<p id="footer"><b>Created by: Crio.Do</b></p>
</body>
</html>