-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
131 lines (113 loc) · 3.51 KB
/
Copy pathindex.html
File metadata and controls
131 lines (113 loc) · 3.51 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="height=device-height, initial-scale=1.0">
<title>App Link</title>
<style>
/* width */
::-webkit-scrollbar {
width: 8px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: limegreen;
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: green;
}
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Noto+Sans:wght@600&family=Roboto:wght@300&family=Tomorrow:wght@300&display=swap');
</style>
<link href='https://fonts.googleapis.com/css?family=Dosis' rel='stylesheet'>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- NAV BAR -->
<div>
<div class="nav" id="nav">
<div>
<a href=""><h1 id="logo">KodeWorm</h1></a>
</div>
<div="nav">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#frsty">1st YEAR</a></li>
<li><a href="#sy">2nd YEAR</a></li>
<li><a href="#ty">3rd YEAR</a></li>
<li><a href="#fy">4th YEAR</a></li>
<li><a href="#foot">About Us</a> </li>
</ul>
</div>
</div>
<!-- Home [part1]-->
<div class="home b" id="home">
<div class="content">
<h2>
Don't Worry!
</h2>
<h4>We got your back</h4>
<p id="hc">
A place where you can find and download study material for every semester. <br>
A place that makes it easy to access all of your materials.
</p>
</div>
<img src="./pics/prism.png" >
</div>
<!-- firstyear [part2]-->
<div class="firstyear pic b" id="frsty">
<div class="content">
<h3 >First Year</h3>
<p>
<a href=""> Study material for FIRST SEMESTER (SCHEME A)</a><br>
<a href=""> Study material for SECOND SEMESTER (SCHEME B)</a>
</p>
</div>
<img src="./pics/naked.png" height="65%">
</div>
<!-- secondyear [part3] -->
<div class="secondyear pic b" id="sy">
<div class="content">
<h3>Second Year</h3>
<p>
<a href="">Study material for THIRD SEMESTER </a><br>
<a href="">Study material for FOURTH SEMESTER </a>
</p>
</div>
<img src="./pics/baby.png" >
</div>
<!-- thirdyear [part4] -->
<div class="thirdyear pic b" id="ty">
<div class="content">
<h3>Third Year</h3>
<p>
<a href="">Study material for FIFITH SEMESTER </a><br>
<a href="">Study material for SIXTH SEMESTER </a>
</p>
</div>
<img src="./pics/standcry.png" >
</div>
<!-- fourthyear [part5] -->
<div class="fourthyear pic b" id="fy">
<div class="content">
<h3>Fourth Year</h3>
<p>
<a href="">Study material for SEVENTH SEMESTER </a><br>
<a href="">Study material for EIGHTH SEMESTER </a>
</p>
</div>
<img src="./pics/drunk.png" >
</div>
<footer id="foot">
.
</footer>
</div>
</body>
</html>