-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheventview.html
More file actions
115 lines (105 loc) · 5.26 KB
/
eventview.html
File metadata and controls
115 lines (105 loc) · 5.26 KB
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
<!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" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css" />
<title>Event View</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light" style="border-bottom: black 3px solid; background-color: Tomato">
<div class="container-fluid">
<img src="Comp Arena-1.png" class="rounded-circle" alt="..." style="height:auto; width: 70px" />
<div class="collapse navbar-collapse">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active p-2 m-2" aria-current="page" href="#"
style="color: white; font-weight: bold">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link active p-2 m-2" aria-current="page" href="#" style="color: white; font-weight: bold">
COMPETITION</a>
</li>
<li class="nav-item">
<a class="nav-link active p-2 m-2" aria-current="page" href="#"
style="color: white; font-weight: bold">ABOUT US</a>
</li>
</ul>
<form class="d-flex">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search" />
<button class="btn btn-outline-success me-2" style="color: white" type="submit">
Search
</button>
<button type="button" class="btn btn-primary">LogIn</button>
</form>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col">
<img src="image.png" class="img-fluid" style="margin-top: 50px" alt="image.png" />
</div>
<div class="col" style="margin-top: 50px">
<p>Deadline</p>
<p class="fw-bold" style="margin-bottom: 20px">15/11/2022</p>
<p>Region</p>
<p class="fw-bold" style="margin-bottom: 20px">Dhaka</p>
<p>Category</p>
<p class="fw-bold" style="margin-bottom: 20px">Programming</p>
<p>Mode</p>
<p class="fw-bold" style="margin-bottom: 20px">Offline</p>
</div>
<div>
<p class="text-justify fst-italic">
The Character Education Week Initiative promotes character education
among all PreK-12 schools as they work together to prepare students
for the demands and challenges of the 21st century. School of
Science and Technology and its partners are all part of this
initiative because we believe that a child’s character development
is of the utmost importance. The Character Education Week Initiative
encompasses universal core ethical values essential to a healthy
society such as citizenship, respect, accountability, dedication,
responsibility, caring, honesty, kindness, leadership, integrity,
etc. Former U.S. Department of Education Secretary Betsy DeVos and
Texas Governor Greg Abbott invite you to join all of them in
recognizing the critical importance the character education plays in
the lives of students. They run the worldwide ‘Color the World with
Character Traits’ PreK-12 Poster Drive. The winners will participate
in the ‘STARS in the CHARACTER SKY’ Event to learn more from noble
people around the world, and to share their insights with the
audience. Here’s an opportunity to showcase your artistic,
imaginative, and creative talent with a POSITIVE & ORIGINAL poster
design based on the theme “Color the World with CHARACTER TRAITS.”
Submit your original art that focuses on ‘LOVE’. Theme: Color the
World with Character Traits such as honesty, integrity, love,
kindness, etc. Focus: Love Description: This year, “Love” is the
focus of the poster drive to promote diversity, kindness, respect,
forgiveness, peace, self-control, self-management, etc. Therefore,
please reflect on the following question before drawing your poster.
“What does love mean for healing the world?” Be sure that your
poster reflects a diverse, freeing, multifaceted, pragmatic
definition of love instead of clichés. NOTE: Students may submit a
poster related to other character traits as well.
</p>
</div>
<div class="d-grid gap-2">
<button class="btn btn-light" type="button">Pin event</button>
<button class="btn btn-light" type="button">Unpin event</button>
</div>
<div class="">Event Link: facebook.com</div>
<div class="">Prizemoney: 10 Lakhs BDT</div>
<div class="">Registration Link: </div>
<div class="">Eligibility: </div>
</div>
<div>
<textarea name="comment" id="" cols="30" rows="10" class="textarea1"
placeholder="Write your comment..."></textarea>
<button class="btn0 btn1">Comment</button>
</div>
</div>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.js"></script>
</body>
</html>