-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (91 loc) · 3.08 KB
/
index.html
File metadata and controls
95 lines (91 loc) · 3.08 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
<!DOCTYPE html>
<html lang="en-US">
<!-- My third html page-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="author" content="Desmond Zeh">
<meta name="description"
content="This program is all about sizing instrument transformers for metering systems. It does not covers all the auxiliaries needed for a proper sizing of current transformers for a metering system, but it gives insights on the most necessary points to be considered when selecting these transformers.">
<title>
Instrument transformers
</title>
<link href="https://fonts.googleapis.com/css2?family=Gelasio:ital@1&family=Lisu+Bosa:ital@1&family=Old+Standard+TT:ital@1&display=swap"
rel="stylesheet">
<link href="style.css"
rel="stylesheet" >
</head>
<body>
<header>
<h1>
<strong>Energy metering system</strong>
</h1>
</header>
<!--My main navigation items-->
<nav>
<ul>
<li id="home"><a href="#">Home</a></li>
<li id = "down"><a href="#">Downloads</a></li>
<li id = "about"><a href="#">About</a></li>
<li id = "project"><a href="#">Project</a></li>
<li id="myDoc"><a href="#">Documents</a></li>
</ul>
<form>
<input type="search" name='q' placeholder="search query">
<input type="submit" value="Valid">
</form>
</nav>
<!--This is my main program-->
<main>
<article>
<p>
<ol>
<li>
<a href="https://desmond-zeh.github.io/VT.github.io/"> Voltage Transformers</a>
</li>
<li>
<a href="https://desmond-zeh.github.io/CT.github.io/"> Current Transformers</a>
</li>
<li>
<a href="https://desmond-zeh.github.io/Tips.github.io/"> Some Tips on energy meter maintenance</a>
</li>
<li>
<a href="https://desmond-zeh.github.io/Installation.github.io/"> Energy meter installation guide and operating procedures</a>
</li>
<li>
<a href="https://desmond-zeh.github.io/table.github.io/"> ITRON SL7000 energy meter's error decoding table</a>
</li>
<li>
<a href="https://desmond-zeh.github.io/CT-reason.github.io/"> Reason why the secondary terminals of a CT shouldn't be left open</a>
</li>
<li>
<a href ="https://desmond-zeh.github.io/VT-Reason.github.io/"> Reason why the secondary terminals of a VT shouldn't be shorted</a>
</li>
<li>
<a href ="https://desmond-zeh.github.io/connectionmethod.github.io/">SL7000 energy meter voltage circuit connection methods</a>
</li>
</ol>
</p>
</article>
</main>
<script src="main.js" differ></script>
<!---My google translator code-->
<div id="google_translate_element"></div>
<script type="text/javascript" >
function googleTranslateElementInit() {
new google.translate.TranslateElement(
{pageLanguage: 'en'},
'google_translate_element'
);
}
</script>
<script type="text/javascript" src=
"https://translate.google.com/translate_a/element.js?
cb=googleTranslateElementInit">
</script>
<!--My main footer item-->
<footer>
<p>Don't judge each day by the <strong>harvest</strong> that you made, but by the <strong>seeds</strong> that you <strong>sold</strong>.</p>
</footer>
</body>
</html>