-
Notifications
You must be signed in to change notification settings - Fork 0
/
company-info.html
83 lines (75 loc) · 3.28 KB
/
company-info.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="company-info.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels"></script>
</head>
<body>
<header class="header">
<a href="#" class="logo">dAppFund.</a>
<i class="bx bx-menu" id="menu-icon"></i>
<nav class="navbar">
<a href="#home" class="active">Home</a>
<!-- <a href="#about">Back to Main page</a> -->
<a href="#services">Contact</a>
<a href="dashboard.html">Back to Dashboard</a>
<button onclick="window.location.href ='ico-form.html';" class="btn" >Buy Tokens</button>
</nav>
</header>
<section class="home">
<div class="img-pabio">
<img src="images\pabio-profile (1).jpg">
<p>Pabio</p>
<div class="home-content">
<p>Pabio offers high-quality furniture rental for Europe.
With our asset-light rent-to-own business model, customers
can get $20k of new furniture with $0 upfront and
monthly payments for up to 4 years. <br>
<br>
Company <span>Valuation</span> : $100,000
<br>
Get <span>latest</span> info at <a href="https://www.crunchbase.com/organization/pabio" target="_blank">Crunchbase</a>
</p>
</div>
</div>
<div class="card">
<div class="financial">
<p>Sales in <span>financial</span> year 2022</p>
<canvas id="sales-chart" width="200" height="200"></canvas>
</div>
</div>
<div class="card">
<div class="financial">
<p>Net<span> Profit</span> in year 2022</p>
<canvas id="profit-chart"></canvas>
</div>
</div>
<div class="card2">
<div class="ceo">
<p class="heading2">About <span>CEO</span></p>
<p class="ceo">Carlo Badini</p>
<p class="txtceo">Carlo Badini is an entrepreneur at heart. During his early 20s, he founded the renowned
Swiss Design Agency Cleverclip while studying at University. Without any external investments,
he bootstrapped the company to 40+ people. Carlo received numerous awards and recognition for his
entrepreneurial achievements.
Forbes Magazines lists him on their 30 Under 30 list. He received the Global Student Entrepreneur
Award and was nominated by EY for the Entrepreneur of the Year Award. Pabio is his second venture.</p>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-text">
<p>Copyright © 2023 Team dAppFund | All Rights Reserved.</p>
</div>
<div class="footer-iconTop">
<!-- <a href="#home"><i class="bx bx-up-arrow-alt"></i></a> -->
</div>
</footer>
</body>
<script src="company-info.js"></script>
</html>