-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample2.html
More file actions
57 lines (54 loc) · 1.56 KB
/
Copy pathsample2.html
File metadata and controls
57 lines (54 loc) · 1.56 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
<!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/stylesheet2.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>DATA TYPES</u></h2>
<p> </p>
<p>Data types are means to identify the type of data and associated operations for handling it.<br>
C++ data types are of 2 types- <b>Fundamental types</b> and<b> Derived types</b></p>
<p> </p>
<div class="op">
<div class="output">
<img src="pictures/datatype2.png"/></div>
<div class="output">
<img src="pictures/datatype.png"/>
</div>
</div>
</div>
</div>
<!-- Message -->
<div class="message-wrapper">
<div class="container">
<a href="sample3.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>