-
Notifications
You must be signed in to change notification settings - Fork 7
/
Devs.html
121 lines (105 loc) · 4.86 KB
/
Devs.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
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
<!DOCTYPE html>
<html>
<!-- the code in the original file for dropdown menu isn't working and it still doesn't work -->
<head>
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Merriweather" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Anton" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Abel" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Monoton" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<!-- TITLE AND CUSTOM CSS -->
<title> Developers </title>
<link rel="stylesheet" href="css/devs.css">
</head>
<body>
<!-- ENTER HEADER HERE -->
<div class="header">
<h1 style="color: white"><b>Developers</b></h1>
<p style="color: white">Hi Users</p>
</div>
<div class="topnav">
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">←</a>
<a href="https://www.amazon.com/s/ref=nb_sb_noss_2/144-7551219-7280505?url=search-alias%3Daps&field-keywords=number+theory">Shop</a>
<a href='#'>Books</a>
<a href='Devs.html'>Developers</a>
<a href='#' id="feed">Feedback</a>
</div><a style="font-size:20px;cursor:pointer ;color:white ; padding-bottom: 8px" onclick="openNav()">☰</a>
<a href="index.html">Home</a>
<div class="dropdown">
<button class="dropbtn">
Primes
<!--<i class="fa fa-caret-down"></i>-->
</button>
<div class="dropdown-content">
<a href="Primality.html">Introduction</a>
<a href="PrimeFact.html">Prime Factors</a>
<a href="RSA.html">RSA Encryption</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">
Modular Arithmetic
<!--<i class="fa fa-caret-down"></i>-->
</button>
<div class="dropdown-content">
<a href="welcome.html">Introduction</a>
<a href="ModularAddMulSub.html">Modular Arithmetic</a>
<a href="congo.html">Modular Congruency</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">
Algorithms
<!--<i class="fa fa-caret-down"></i>-->
</button>
<div class="dropdown-content">
<a href="bubble.html">Bubble Sort</a>
</div>
</div>
</div>
<div class="w3-container">
<button class="w3-button w3-xlarge w3-circle w3-red w3-card-4" id="myBtn">+</button>
</div>
<!-- ENTER CONTENT HERE-->
<div class="row">
<div class="leftcolumn">
<div class="card">
<img src="css/img/me.jpg" style="width: 100px ; height: 100px ; border-radius: 50%">
<p><q>Making this website was a very knwoledgeful experience . I got to know so many new things about <i>Web Development</i> and the beauty of <i>CSS</i> </q></p>
<p style="margin-left: 600px"><b>-Abhyuday Tripathi</b></p>
<img src="css/img/ananya.jpg" style="width: 100px ; height: 100px ; border-radius: 50%">
<p><q>While working on this project I got to know some basics of HTML, CSS and Javascript. We tried our best to get this webpage to its present form.</q></p>
<p style="margin-left: 600px"><b>-Ananya Tewari</b></p>
</div>
</div>
</div>
<!-- CUSTOM JS GOES HERE -->
<script src="js/prim.js"></script>
<script type="text/javascript">
var w = document.getElementById("mySidenav");
var c = document.getElementsByClassName("card");
function openNav() {
document.getElementById("mySidenav").style.width = "15%";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
}
var b = document.getElementById("dark");
var v = document.getElementById("body");
function ev() {
document.body.style.backgroundColor = "#f3f3f3";
document.body.style.backgroundImage = "url(css/img/test.jpg)";
document.body.style.color = "black";
}
function bac() {
document.body.style.backgroundImage = "url(css/img/black-abstract-wallpaper-hd-On-wallpaper-hd.jpg)";
document.body.style.color = "white";
}
</script>
</body>
</html>