-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
125 lines (113 loc) · 3.43 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="mobile-web-app-capable" content="yes" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>2nd Electrical</title>
<link rel="icon" href="./src/assets/icon.png" type="image/icon type" />
<link rel="stylesheet" href="./src/css/style.css" />
<meta name="google-site-verification" content="59WWQqUhnNEbEgKt3zSJDOtwXg0W8isyfB_3JoySAeE" />
<link rel="shortcut icon" href="" />
</head>
<body>
<nav class="" id="nav">
<ul>
<li><a href="#">home</a></li>
<li>
<a
href="https://drive.google.com/drive/folders/1DQNrFndwdH1_D_026miRfwM7nA1duKVF"
>drive</a
>
</li>
<li>
<a
href="https://www.youtube.com/channel/UCDD_drN23ChmeJ2dhQqnehg/playlists"
>channel</a
>
</li>
</ul>
</nav>
<div class="header">
<div class="h">
<h1>WILL BE UPDATED SOON </h1>
<p>
faculty of engineering <br />
<span>Ain Shams university</span>
</p>
</div>
<div class="down bounce" id="down">
<a href="#subjects">
<img src="./src/assets/down.svg" />
</a>
</div>
</div>
<div class="subjects" id="subjects">
<div class="subject">
<div class="title">
Mechanical engineering
</div>
<a class="left sbtn" href="./subjects/enginees.html">Engines</a>
<a class="center sbtn" href="./subjects/transfter.html"
>Heat transfter</a
>
<a class="right sbtn" href="./subjects/thermo.html">Thermo</a>
</div>
<div class="subject">
<a class="title" href="./subjects/logic.html">Logic Design</a>
</div>
<div class="subject">
<a class="title" href="./subjects/field.html">Electro Magnetic Fields</a>
</div>
<div class="subject">
<div class="title">
electronics
</div>
<a class="left sbtn" href="./subjects/drHesham.html">dr Hesham</a>
<a class="right sbtn" href="./subjects/profWagdy.html">prof wagdy</a>
</div>
<div class="subject">
<div class="title">
Math 3
</div>
<a class="left sbtn" href="./subjects/drmakram.html">Dr Makram</a>
<a class="right sbtn" href="./subjects/Drmahmoud.html">Dr Mahmoud</a>
</div>
</div>
<footer>
<p>
<b>WILL BE UPDATED SOON</b>
</p>
<p>all creadits goes to Cam-team & Drive-Team © 2020</p>
</footer>
</body>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script type="module">
import scroll from "./src/js/scroll.js";
const content = document.getElementById("subjects");
const nav = document.getElementById("nav");
scroll(content, "d");
scroll(nav, "f");
</script>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-155223882-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-155223882-1");
</script>
<!-- <script>
if ("serviceWorker" in navigator) {
window.addEventListener("load", () => {
navigator.serviceWorker.register("./sw.js");
});
}
</script> -->
<link rel="stylesheet" href="./src/css/bounce.css" />
</html>