forked from 000Andre000/Lit_soc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (114 loc) · 3.92 KB
/
index.html
File metadata and controls
124 lines (114 loc) · 3.92 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
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<!-- ***************************** First Section ************************************** -->
<div class="top">
<div class="top_container">
<div class="logo">
<img class="logo" src="img/logo.png" alt="LOGO" />
</div>
<nav>
<ul>
<li>Blog</li>
<li>Events</li>
<li>Reviews</li>
<li>Annual report</li>
</ul>
</nav>
<img class="bk" src="img/top_Img.png" alt="Stack Of Books">
</div>
</div>
<!-- ********************************* Core Team Section ************************************* -->
<div class="Core_team" >
<div class="activity">
<h1 id="core_text" > CORE TEAM </h1>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</div>
<div class="work">
<div class="work_contain">
<h1 class="work_text">What We Do</h1>
<div class="work_table">
<table class="working">
<tr>
<td>
<img src="..." alt="Workshops"
</td>
<td>
<img src="..." alt="Reviewss"
</td>
<td>
<img src="..." alt="Recommendationsz"
</td>
</tr>
<tr>
<td>
<h2>Workshops</h2>
</td>
<td>
<h2>Reviews</h2>
</td>
<td>
<h2>Recommendations</h2>
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="Workshops_sec" >
<h1 id="workshop_text">WORKSHOPS </h1>
<div class="slideshow-container">
<div class="mySlides fade">
<img class="core_img" src="img/goku.jpg" style="width:100%">
<div class="text">WORKSHOP A</div>
</div>
<div class="mySlides fade">
<img class="core_img" src="img/goku_black.jpg" style="width:100%">
<div class="text">WORKSHOP B</div>
</div>
<div class="mySlides fade">
<img class="core_img" src="img/one_piece.jpg" style="width:100%">
<div class="text">WORKSHOP C</div>
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
</div>
<div class="Join_us">
<div class="join">
<h1 id="join_text">JOIN US</h1>
<div class="joinUs_form">
<form>
<input class="join_form" type="text" placeholder="Full Name"><br>
<input class="join_form" type="text" placeholder="Branch"><br>
<input class="join_form" type="text" placeholder="Semister"><br>
<input class="join_form" type="email" placeholder="College Email"><br>
<button class="submit_btn" type="submit">SUBMIT</button>
</form>
</div>
</div>
</div>
<div class="Contact_us">
<div class="Contact">
<h1 id="contact_text"> Contact US </h1>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</div>
<script src="slideshow.js"></script>
</body>
</html>