-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew.html
More file actions
53 lines (43 loc) · 1.63 KB
/
new.html
File metadata and controls
53 lines (43 loc) · 1.63 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="newcss.css">
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
<title></title>
<h1>WEB DEVELOPMENT</h1>
</head>
<body>
<div class="col-lg-4 col-md-6 col-sm-12">
<h2 class="html">
HTML
</h2>
<p>Hypertext Markup Language is the standard markup language for creating web pages and web applications. With
Cascading Style Sheets and JavaScript, it forms a triad of cornerstone technologies for the World Wide Web.
</p>
</div>
<div class="col-lg-4 col-md-6 col-sm-12">
<h2 class="js">
JS
</h2>
<p>JavaScript, often abbreviated as JS, is a high-level, interpreted programming language that conforms to the
ECMAScript specification. It is a language that is also characterized as dynamic, weakly typed,
prototype-based and multi-paradigm.</p>
</div>
<div class="col-lg-4 col-sm-12 col-md-12">
<h2 class="css">
CSS
</h2>
<p>Cascading Style Sheets is a style sheet language used for describing the presentation of a document written
in a markup language like HTML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and
JavaScript.</p>
</div>
<!--
While applying 33% my third element(H2 with CSS) didn't place in the first
row.
While applying 50% my second element(H2 with JS) didn't place in the first row
.
-->
</body>
</html>