-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
137 lines (136 loc) · 5.6 KB
/
about.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>World Food Conference 2023 - About</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
crossorigin="anonymous"
/>
<link href="https://unpkg.com/[email protected]/css/boxicons.min.css" rel="stylesheet" />
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<header id="start" class="main-nav">
<div class="top-nav">
<div class="container">
<div class="row">
<div class="col">
<ul class="list-inline d-flex justify-content-end gap-4 social">
<li class="list-inline-item">
<a href="#"><i class="bx bxl-facebook-square"></i></a>
</li>
<li class="list-inline-item">
<a href="#"><i class="bx bxl-twitter"></i></a>
</li>
<li class="list-inline-item"><a href="#">Logout</a></li>
<li class="list-inline-item"><a href="#">My Page</a></li>
<li class="list-inline-item"><a href="#">Español</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col">
<nav class="navigation">
<div class="logo-placeholder">
<a class="btn" href="./index.html"><img src="./img/logo.svg" alt="Healthy Food Logo" /></a>
</div>
<div class="burguer-menu">
<button class="btn" type="button">
<i class="bx bx-menu"></i>
</button>
</div>
<div class="nav-links">
<ul class="list-unstyled align-items-center">
<li><a href="./index.html#start">Home</a></li>
<li><a href="./about.html#start">About</a></li>
<li><a href="#contact">Join</a></li>
<li><a href="#contact">Sponsor</a></li>
<li><a href="#contact">News</a></li>
<li><button class="btn">Hf JoinUs</button></li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</header>
<main>
<section class="hero p-3">
<div class="container">
<div class="row">
<div class="col text-center">
<span class="h3 text-red">"Hello, Sharing world"</span>
<h1 class="text-red mb-4">Healthy food global summit 2023</h1>
<p class="event-description about">
The Healthy Food Global Conference 2023 brings together a community of experts, chefs, and distinguished
personalities from the culinary world.
</p>
<div class="event-info about mt-4">
<p class="text-center">Please Contact us per email for any further questions</p>
<p class="text-center">About WF Conference 2023!</p>
<p class="text-center fw-bold text-decoration-underline">[email protected]</p>
</div>
</div>
</div>
</div>
</section>
<section class="about-logo container">
<div class="row main-schedule-about">
<div class="col">
<h2 class="text-center logo-font fw-bold pt-4">World Food Conference Group</h2>
<h2 class="text-center logo-font fs-3 fw-bold">WFC 2023 Logo</h2>
<p class="text-center sm-fz">
The logo of FWC was decided trought the "LOGO Competition from 8, june to 7, july" After online public
voting and selectiong commite judging process.
</p>
<div class="about-container-img">
<img class="logo" src="./img/logo.svg" alt="WFC logo" />
</div>
<hr class="grey-bar" />
<p class="text-center fw-bold main-program logo-font">See the past WF Global Conference</p>
<p class="text-center sm-fz">Take a look the last two WFC which took place in Venezuela and Brasil"</p>
<div class="last-meet">
<div class="image-container">
<img src="./img/venezuela-2022.jpg" alt="Venezuela 2022" />
<div class="text-overlay">
<h3><span>2022</span> WFC in Venezuela</h3>
</div>
</div>
<div class="image-container">
<img src="./img/brasil-2021.jpg" alt="Brasil 2021" />
<div class="text-overlay">
<h3><span>2021</span> WFC in Goias</h3>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="main-footer-about py-3">
<div class="container">
<div class="row">
<div class="col-6">
<img src="./img/logo-light.svg" alt="Healthy Food Logo" />
</div>
<div class="col-6 align-items-center d-flex justify-content-end">
<p class="m-0 text-right text-white">2023 World Food Conference</p>
</div>
</div>
</div>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"
></script>
<script src="./js/main.js"></script>
</body>
</html>