-
Notifications
You must be signed in to change notification settings - Fork 0
/
eceT1.html
164 lines (156 loc) · 5.62 KB
/
eceT1.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<html>
<head><style>
/* Define the style for the title */
h3 {
text-align: center;
color: #333; /* Black color for the title */
font-size: 24px; /* Larger font size */
font-weight: bold; /* Bold font weight */
margin-top: 20px; /* Add some top margin for spacing */
margin-bottom: 10px; /* Add some bottom margin for spacing */
}
/* Define the style for the table */
table {
border-collapse: collapse; /* Collapse table borders */
width: 100%; /* Full width */
}
/* Define the style for table header cells */
th {
background-color: #f2f2f2; /* Light gray background */
text-align: left; /* Left-align text */
padding: 8px; /* Add padding */
}
/* Define the style for table data cells */
td {
padding: 8px; /* Add padding */
}
/* Define the style for odd table rows */
tr:nth-child(odd) {
background-color: #d3c9c9; /* Light gray background for odd rows */
}
/* Define the style for table rows on hover */
tr:hover {
background-color: #ddd; /* Darker gray background on hover */
}
</style></head>
<body>
<h3 style="text-align: center;">LIST OF ELECTRONIC COMMUNICATION ENGINEERING</h3>
<h4 style="text-align: center;"> INDEX BY AUTHORWISE</h4>
<table border="1">
<thead>
<tr>
<th>ACCNO</th>
<th>AUTHOR</th>
<th>TITLE</th>
<th>PUBLISHER</th>
<th>Number of Editions Available</th>
</tr>
</thead>
<tr>
<td>001</td>
<td>Wayne Tomasi</td>
<td><a href="pdfs/ece.pdf">Logic and Computer Design Fundamentals</a></td>
<td>Pearson</td>
<td>6</td>
</tr>
<tr>
<td>002</td>
<td>John G. Proakis, Masoud Salehi</td>
<td>Communication Systems Engineering</td>
<td>Pearson</td>
<td>4</td>
</tr>
<tr>
<td>003</td>
<td>Simon Haykin</td>
<td>Communication Systems</td>
<td>Wiley</td>
<td>5</td>
</tr>
<tr>
<td>004</td>
<td>Bruce Carlson, Paul Crilly</td>
<td>Communication Systems: An Introduction to Signals and Noise in Electrical Communication</td>
<td>McGraw-Hill Education</td>
<td>3</td>
</tr>
<tr>
<td>005</td>
<td>John M. Senior</td>
<td>Optical Fiber Communications: Principles and Practice</td>
<td>Pearson</td>
<td>7</td>
</tr>
<tr>
<td>006</td>
<td>Simon Haykin, Michael Moher</td>
<td>Modern Wireless Communications</td>
<td>Pearson</td>
<td>3</td>
</tr>
<tr>
<td>007</td>
<td>Andrea Goldsmith</td>
<td>Wireless Communications</td>
<td>Cambridge University Press</td>
<td>2</td>
</tr>
<tr>
<td>008</td>
<td>William Stallings</td>
<td>Data and Computer Communications</td>
<td>Pearson</td>
<td>10</td>
</tr>
<tr>
<td>009</td>
<td>Robert M. Z. Nahman</td>
<td>Antenna Engineering Handbook</td>
<td>McGraw-Hill Education</td>
<td>4</td>
</tr>
<tr>
<td>010</td>
<td>Bruce A. Wooley, Bobak Nazer</td>
<td>Digital Communication Receivers: Synchronization, Channel Estimation, and Signal Processing</td>
<td>Cambridge University Press</td>
<td>2</td>
</tr>
<tr>
<td>011</td>
<td>David A. Bell</td>
<td>Electronic Devices and Circuits</td>
<td>Oxford University Press</td>
<td>8</td>
</tr>
<tr>
<td>012</td>
<td>Thomas L. Floyd</td>
<td>Electronic Devices: Conventional Current Version</td>
<td>Pearson</td>
<td>9</td>
</tr>
<tr>
<td>013</td>
<td>Robert L. Boylestad, Louis Nashelsky</td>
<td>Electronic Devices and Circuit Theory</td>
<td>Pearson</td>
<td>12</td>
</tr>
<tr>
<td>014</td>
<td>S. Salivahanan, S. Arivazhagan</td>
<td>Electronic Devices and Circuits</td>
<td>Tata McGraw-Hill Education</td>
<td>6</td>
</tr>
<tr>
<td>015</td>
<td>David A. Bell</td>
<td>Electronic Instrumentation and Measurements</td>
<td>Oxford University Press</td>
<td>5</td>
</tr>
</table>
</body>
</html>