-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
81 lines (64 loc) · 1.69 KB
/
index.htm
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
<!DOCTYPE html>
<!--
index.htm, ipmic's Web Page
Copyright (C) 2017 Ricardo Biehl Pasquali <[email protected]>
-->
<html>
<head>
<title>The ipmic Project</title>
</head>
<body>
<!-- Main table -->
<table style="border: 1px solid black; width: 100%">
<!-- First row -->
<tr>
<!-- Profile image -->
<td style="border: 1px solid black; width: 200px">
<img src="/content/logo.png"
style="width: 200px"
alt="The ipmic Logo"
title="The ipmic Logo"/>
</td>
<!-- .Profile image -->
<!-- My name, email and navbar -->
<td style="border: 1px solid black; text-align: center; vertical-align: middle">
<h1>The ipmic Project</h1><br>
<!-- Navbar -->
<a href="/">Index</a>
<a href="/about.htm">About</a>
<a href="/docs/index.htm">Docs</a>
<a href="https://github.com/ipmic/ipmic">Repository/source_code</a>
<!-- .Navbar -->
</td>
<!-- .My name, email and navbar -->
</tr>
<!-- .First row -->
<!-- Second row -->
<tr>
<!-- Lateral bar -->
<td style="border: 1px solid black; width: 200px; vertical-align: top">
<br>
Social:
<br>
<a href="https://facebook.com/ipmicproject">Facebook</a>
</td>
<!-- .Lateral bar -->
<!-- News section -->
<td style="border: 1px solid black; vertical-align: top">
<h2>Making microphone easier</h2>
The majority of microphones in market are expensive and only works with its
proprietary hardware and software. What about using your computer along with
a smartphone to create a functional microphone system? That's exactly what
ipmic aims :-)<br><br><br><br>
<br> <!-- news division -->
</td>
<!-- .News section -->
</tr>
<!-- .Second row -->
</table>
<!-- .Main table -->
</body>
</html>