-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (63 loc) · 2.63 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tabs</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<section class="container">
<ul class="tabs">
<li class="tab-item">
<a href="#item1" class="active">HTML</a>
</li>
<li class="tab-item">
<a href="#item2">CSS</a>
</li>
<li class="tab-item">
<a href="#item3">JAVASCRIPT</a>
</li>
<li class="tab-item">
<a href="#item4">REACT</a>
</li>
<li class="tab-item">
<a href="#item5">NODE</a>
</li>
</ul>
<div class="wrapper_tab-content">
<article id="item1" class="tab-content content-visible">
<h1>HTML</h1>
<p>
The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript.
</p>
</article>
<article id="item2" class="tab-content">
<h1>CSS</h1>
<p>
Cascading Style Sheets is a style sheet language used for describing the presentation of a document written in a markup language such as HTML. CSS is a cornerstone technolog of the World Wide Web, alongside HTML and JavaScript.
</p>
</article>
<article id="item3" class="tab-content">
<h1>JAVASCRIPT</h1>
<p>
JavaScript, often abbreviated JS, is a programming language that is one of core technologies of the World Wide Web, alongside HTML and CSS. Over 97% of websites use JavaScript on the client side for web page behavior, often incorporating third-party libraries.
</p>
</article>
<article id="item4" class="tab-content">
<h1>REACT</h1>
<p>
React is a free and open-source front-end JavaScript library for building user interfaces based on components. It is maintained by Meta and a community of individual developers and companies. React can be used to develop single-page, mobile, or server-rendered applications with frameworks like Next.js.
</p>
</article>
<article id="item5" class="tab-content">
<h1>NODE</h1>
<p>
Node.js is a cross-platform, open-source server environment that can run on Windows, Linux, Unix, macOS, and more. Node.js is a back-end JavaScript runtime environment, runs on the V8 JavaScript engine, and executes JavaScript code outside a web browser.
</p>
</article>
</div>
</section>
<script src="app.js"></script>
</body>
</html>