-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathB.HTML
More file actions
96 lines (83 loc) · 2.76 KB
/
Copy pathB.HTML
File metadata and controls
96 lines (83 loc) · 2.76 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
!DOCTYPE html>
<html>
<head>
<title>Simple web page Template</title>
<link rel="stylesheet" href="W.CSS">
</head>
<body>
<nav class="navbar background">
<div class="logo">
<img src="https://static.theprint.in/wp-content/uploads/2022/06/Image_42022060313452820220603135522.jpg"
style="height: 100px;"
alt="Logo">
</div>
<ul class="nav-list">
<li><a href="#web">Web Technology</a></li>
<li><a href="#program">Cybersecurity</a></li>
<li><a href="#course">Data Science</a></li>
</ul>
<div class="rightnav">
<input type="text"
name="search"
id="search">
<button class="btn btn-sm">Search</button>
</div>
</nav>
<section class="firstsection">
<div class="box-main">
<div class="firstHalf">
<h1 class="text-big"
id="web">Web Technology
</h1>
<p class="text-small">
HTML stands for HyperText Markup Language.
It is used to design web pages using a markup
language. HTML is the combination of Hypertext
and Markup language. Hypertext defines the
link between the web pages. A markup language
is used to define the text document within tag
which defines the structure of web pages.
HTML is a markup language that is used by the
browser to manipulate text, images, and other
content to display it in the required format.
</p>
</div>
</div>
</section>
<section class="secondsection">
<div class="box-main">
<div class="firstHalf">
<h1 class="text-big"
id="program">
Cybersecurity
</h1>
<p class="text-small">
Cyber security is the application of technologies,
processes, and controls to protect systems, networks,
programs, devices and data from cyber attacks.
It aims to reduce the risk of cyber attacks and
protect against the unauthorised exploitation of
systems, networks, and technologies.
</p>
</div>
</div>
</section>
<section class="section">
<div class="paras">
<h1 class="sectionTag text-big">Data science</h1>
<p class="sectionSubTag text-small">
Data science combines math and statistics, specialized programming,
advanced analytics, artificial intelligence (AI) and machine learning
with specific subject matter expertise to uncover actionable insights
hidden in an organization's data. These insights can be used to guide
decision making and strategic planning.
</p>
</div>
</section>
<footer class="background">
<p class="text-footer">
Copyright ©-All rights are reserved
</p>
</footer>
</body>
</html>