-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (76 loc) · 3.59 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Hiram's Business Acquistion Blog</title>
<meta content="width=device-width, inital-scale=1, maximum-scale=1" name="viewport" />
<link rel="stylesheet" type="text/css" href="styles/main.css">
</head>
<body>
<div class="container">
<h1 class="box" id="one">Hiram's Business Acquisition Blog</h1>
<div class="box" id="sixth">
<h2>Navigation</h2>
</div>
<div class="box" id="two">
<ul>
<li><a href="./blog_posts/blog_post_1.html">Valuation techniques</a></li>
<li><a href="./blog_posts/blog_post_2.html">Introduction to operations</a></li>
<li><a href="./blog_posts/blog_post_3.html">How to search for a fund</a></li>
<li><a href="./blog_posts/blog_post_4.html">Introduction to small business investing</a></li>
</ul>
<button><a href="" class="custom-button">SUBSCRIBE</a></button>
</div>
<div class="box" id="fifth">
<h2>Most recent posts</h2>
</div>
<div class="box" id="three">
<div class="blog-post" id="first">
<img
src="./images/stock photo 1.jpg"
height="60px"
alt="Valuation technique photo"
/>
<h3 class="title">Valuation techniques</h3>
<p class="date">Oct 19</p>
<p>Learn the most used techniques to value a business</p>
<button><a href="./blog_posts/blog_post_1.html" class="custom-button">Continue reading</a></button>
</div>
<div class="blog-post" id="second">
<img
src="./images/stock photo 2.jpg"
height="60px"
alt="Introduction to operations photo"
/>
<h3 class="title">Introduction to operations</h3>
<p class="date">Nov 24</p>
<p>Learn what matters most when operating a small business</p>
<button><a href="./blog_posts/blog_post_2.html" class="custom-button">Continue reading</a></button>
</div>
<div class="blog-post" id="third">
<img
src="./images/stock photo 3.png"
height="60px"
alt="Magnifying glass"
/>
<h3 class="title">How to search for fund</h3>
<p class="date">Dec 12</p>
<p>Learn where to find the best deals</p>
<button><a href="./blog_posts/blog_post_3.html" class="custom-button">Continue reading</a></button>
</div>
<div class="blog-post" id="fourth">
<img
src="./images/stock photo 4.jpg"
height="60px"
alt="Calculator"
/>
<h3 class="title">Introduction to small business financing</h3>
<p class="date">Dec 26</p>
<p>Learn about the different financing options</p>
<button><a href="./blog_posts/blog_post_4.html" class="custom-button">Continue reading</a></button>
</div>
</div>
<footer class="box" id="four">Copyright 2023</footer>
</div>
</body>
</html>