-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (70 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>HTML Basics</title>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.7/css/all.css">
<link href="https://fonts.googleapis.com/css?family=Homemade+Apple|Unna&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<div class="navigation">
<div class="logo">
<h1>Sensive</h1>
</div>
<div class="menu">
<ul>
<li>Home</li>
<li>Arichive</li>
<li>Categoery</li>
<li>pages</li>
<li>Contact</li>
</ul>
</div>
<div class="socialmedia">
<ul>
<li><i class="fab fa-facebook-f"></i></li>
<li><i class="fab fa-twitter"></i></li>
<li><i class="fab fa-instagram"></i></li>
<li><i class="fab fa-whatsapp"></i></li>
</ul>
</div>
</div>
</div>
<div class="slider">
<div class="slide">
<h3>Tours & Travels</h3>
<h2>Amazing place on Earth</h2>
<p>December 12,2018</p>
</div>
</div>
<div class="cardsection">
<div class="card">
<div class="leftcard ">
<img src="./cardimg.jpg" alt="Left Card Image">
<button>Fashion</button>
<h3>New york fashion week's continued the evolution</h3>
<p>2 days agos</p>
</div>
<div class="centercard">
<img src="./cardimg2.jpg" alt="Center Card Image">
<button>Fashion</button>
<h3>New york fashion week's continued the evolution</h3>
<p>2 days agos</p>
</div>
<div class="rightcard">
<img src="./cardimg3.jpg" alt="Right Card Image">
<button>Fashion</button>
<h3>New york fashion week's continued the evolution</h3>
<p>2 days agos</p>
</div>
</div>
</div>
<div class="footer">
<p>All Rights Reserved</p>
</div>
</body>
</html>