-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (47 loc) · 2.62 KB
/
Copy pathindex.html
File metadata and controls
49 lines (47 loc) · 2.62 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=0">
<title>WebnD Project</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<section class="header">
<nav>
<a href="https://www.iitbbs.ac.in" target="_blank" rel="noopener noreferrer"><img src="logo.png"></a>
<div class="nav-links">
<ul>
<li><a href= "">HOME</a></li>
<li><a href= "">ABOUT</a></li>
<li><a href= "">CONTACT</a></li>
</ul>
</div>
</nav>
<div class="text-box">
<h1>Welcome to IIT Bhubaneswar Resources</h1>
<p>Here you can find the best resources according to me</p>
<a href="https://www.iitbbs.ac.in" class="web-btn" target="_blank" rel="noopener noreferrer">Visit Us</a>
</div>
</section>
<section class="languages">
<h1>Languages You Need</h1>
<div class="row">
<a href="https://www.youtube.com/playlist?list=PLfqMhTWNBTe3LtFWcvwpqTkUSlB32kJop" target="_blank" rel="noopener noreferrer"><div class="col">
<h3>Java</h3>
<p>Java is a widely used object-oriented programming language and software platform that runs on billions of devices, including notebook computers, mobile devices, gaming consoles, medical devices and many others. </p>
</div></a>
<a href="https://www.youtube.com/watch?v=gfDE2a7MKjA" target="_blank" rel="noopener noreferrer"><div class="col">
<h3>Python</h3>
<p>Python is an interpreted, object-oriented, high-level programming language with dynamic semantics developed by Guido van Rossum. It was originally released in 1991.</p>
</div></a>
<a href="https://www.youtube.com/playlist?list=PLfqMhTWNBTe0b2nM6JHVCnAkhQRGiZMSJ" target="_blank" rel="noopener noreferrer"><div class="col">
<h3>C++</h3>
<p>C++ is an object-oriented programming language which gives a clear structure to programs and allows code to be reused, lowering development costs </p>
</div></a>
</div>
</section>
</body>
</html>