-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappnotes.html
More file actions
100 lines (88 loc) · 2.32 KB
/
appnotes.html
File metadata and controls
100 lines (88 loc) · 2.32 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
96
97
98
99
100
<!DOCTYPE html>
<!-- format2025 -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OCA Techsite: Application Notes</title>
<link rel=stylesheet type='text/css' href='css/screen.css' media='screen'/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Encode+Sans:wght@100..900&display=swap" >
<script src='js/script.js' ></script>
<style>
.table-compact {
width: 100%;
border-collapse: collapse;
font-size: 1.0rem;
line-height: 1.2;
}
.table-compact thead th {
font-weight: 600;
background-color: #f8f9fa;
}
.table-compact th,
.table-compact td {
text-align: left;
padding: 0;
min-width:0;
}
.date {
color:#2A677A;
text-align:center;
}
</style>
</head>
<body>
<table class='table-compact'>
<col width='15%'>
<col>
<tbody>
<tr>
<td>
<a href='index.html'>
<img src='images/OCA-Logo-300.png.webp' width='130px' height='60px' alt='OCA Alliance Logo'/>
</a>
</td>
<td class=topnav>
<ul>
<li><a href='aes70.html'>AES70 Standard</a></li>
<li><a href='repositories.html'>Repositories</a></li>
<li><a href='downloads.html'>Downloads</a></li>
<li><a href='information.html'>Information</a></li>
<li><a href='appnotes.html'>Application Notes</a></li>
<li><a href='opensource.html'>Open‑Source Guidelines</a></li>
</ul>
</td>
</tr>
</tbody>
</table>
<div class='banner'>
<div class='title'>
<h1>Application Notes</h1>
</div>
</div>
<div class=content>
<p class='nospace'>
This page will provide access to informative notes that describe
solutions, patterns, and approaches to satisfy common
AES70 design and application requirements.
</p>
<table class='table-compact'>
<col>
<col width='64pt'>
<col width='64pt'>
<tr style='border-bottom: 1px solid #808080;'>
<td > </td>
<td > </td>
<td > </td>
</tr>
<tr style='border-bottom: 1px solid #808080;'>
<td colspan=3 style='color:#FF0000; border:bottom 1px solid #000000;'>
<p>
Coming soon!
</p>
</td>
</tr>
</table>
</div>
</body>
</html>