-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample6.html
More file actions
61 lines (60 loc) · 1.71 KB
/
Copy pathsample6.html
File metadata and controls
61 lines (60 loc) · 1.71 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
<!DOCTYPE html>
<html>
<!-- Settings of the HTML document -->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Deal With C++</title>
<link rel="stylesheet" href="stylesheets/stylesheet6.css" />
<link rel="stylesheet" href="stylesheets/responsive.css" />
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<div class="header-left">
<img class="logo" src="pictures/logo.png"/>
</div>
<span class="fa fa-bars menu-icon"></span>
<div class="header-right">
<a href="sample.html">Home</a>
</div>
</div>
</header>
<!-- Top -->
<div class="top-wrapper">
<div class="container">
<h2><u>ARRAYS</u></h2>
<p> </p>
<p>An array is a collection of variables of the same data type that are referenced by a common name.<br>
Arrays can be- <b>Single Dimensional</b> and<b>Two-Dimensional</b></p>
<p> </p>
<div class="op">
<div class="output">
<img src="pictures/output5.png"/></div>
<div class="output">
<img src="pictures/input5.png"/>
</div>
</div>
</div>
</div>
<!-- Lesson -->
<div class="lesson-wrapper">
<div class="container">
</div>
</div>
<!-- Message -->
<div class="message-wrapper">
<div class="container">
<a href="sample7.html"> <span class="btn message">Next</span></a>
</div>
</div>
<!-- Footer -->
<footer>
<div class="container">
<img src="pictures/logo.png" />
<div class="footer-msg">For more details contact- abc@gmail.com</div>
</div>
</footer>
</body>
</html>