-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.08 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Show Div's Side-by-side</title>
<link rel="stylesheet" href="css/stylesheets/main.css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<div class="page-width">
<h4>INVOICE</h4>
<div id="bill-from" class="content-box">
<strong>
Send Payments To:
</strong>
<p>
<span class="name">Edward Elliot</span>
<br>
Address Line 1
<br>
City, State Zip
</p>
</div>
<div id="bill-to" class="content-box">
<strong>
Bill To:
</strong>
<p>
<span class="name">Joshua Wedekind</span>
<br>
Address Line 1
<br>
City, State Zip
</p>
</div>
</div>
</body>
</html>