-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathengineering.html
103 lines (97 loc) · 2.76 KB
/
engineering.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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<meta name="description" content="engineering lessons" />
<title>engineering</title>
<link
rel="stylesheet"
type="text/css"
href="leonardoprofessionalCSS/lessonList.css"
/>
</head>
<body>
<div class="Header">
<img
src="leonardoprofessionalPictures/logo.PNG"
alt="logo"
style="width: 300px; height: 75px"
/>
<div>
<a class="navButton" href="index.html"><b>home</b></a>
</div>
<div>
<a class="navButton" href="math.html"><b> math </b></a>
</div>
<div>
<a class="navButton" href="engineering.html"><b> engineering </b></a>
</div>
<div>
<a class="navButton" href="coding.html"><b> coding </b></a>
</div>
<div>
<button class="btn-primary">
<a href="#"><b> contact me </b></a>
</button>
</div>
</div>
<div class="mainPage">
<h1>Engineering lessons</h1>
<div class="lessonBoxRed">
<div class="image">
<img
src="leonardoprofessionalPictures/parallelConnection.PNG"
alt="Logarithms"
style="width: 300px; height: 220px"
/>
</div>
<div id="logs" class="title">
<a href="engineering/introCircuitAnalysis.html"
><h1>intro to circuit analysis</h1></a
>
</div>
<div class="article">
<p>
Aug 06, 2021
<br />
 Here we will learn about voltage, current, and resistance.
These values come from componants called Sources and Resistors.
</p>
</div>
</div>
<div class="lessonBoxBlue">
<div class="image">
<img
src="leonardoprofessionalPictures/KVL_KCL.PNG"
alt="Logarithms"
style="width: 300px; height: 220px"
/>
</div>
<div id="logs" class="title">
<a href="engineering/KVL_KCL.html"><h1>KVL and KCL</h1></a>
</div>
<div class="article">
<p>
Aug 06, 2021
<br />
  KVl stands for Kirchhoff's voltage law and KCL stands for
Kirchhoff's current law. lets see how voltage and current flow
through a circuit
</p>
</div>
</div>
<br />
<br />
</div>
<footer class="footer">
<br />
<br />
<br />
<br />
<br />
<br />
<br />
</footer>
</body>
</html>