-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
135 lines (130 loc) · 4.76 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
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
<!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">
<title>Frontend Practice | Monogram project</title>
</head>
<div>
<header class="z">
<nav>
<h2 class="L"><a href='#' style="text-decoration: none;color: black;">Frontend Practice</a></h2>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">FAQ</a></li>
<li><a href="#">Newsletter</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<section class="q">
<div id="k">
<h1>Monogram</h1>
</div>
<div id="l">
<h2>Shop Page</h2>
</div>
<div id="m">
<a href='#' id="v">🌐View Live</a>
<a href='#' id="v">📷Free Photo Assets</a>
<a href='#' id="v">⭐Open Source Icon</a>
</div>
<div id="bb">
<div id="fb">
<h3 class="dis">Recreate this to learn:</h3>
<ul class="gh">
<li>Hero image slider</li>
</ul>
<ul class="gh">
<li>Image hover transition</li>
</ul>
<ul class="gh">
<li>Dropdown menu</li>
</ul>
<ul class="gh">
<li>Menu hide/appear on scroll</li>
</ul>
<ul class="gh">
<li>and more!</li>
</ul>
</div>
<div id="fb">
<h3 class="dis">Color Palette:</h3>
<ul>
<li id="wq" class="wq">#1a2456</li>
<li id="wq" class="wq">#ff8b68</li>
<li id="wq" class="wq">#ff501c</li>
<li id="wq" class="wq">#f0eded</li>
<li id="wq" class="wq">#080b1b</li>
</ul>
</div>
<div id="fb">
<h3 class="dis">Recommended Course:</h3>
<p class="ll" style="align-items: center;">Frontend Masters offers a completely free "Getting Started
With CSS" course.</p>
<button id="bu">Learn more</button>
</div>
<div id="fb">
<h3 class="dis">Resources:</h3>
<a href='#' id="lo">How To-Slideshow</a>
<a href='#' id="lo">Change image on hover</a>
<a href='#' id="lo">A Complete Guide to Grid</a>
<a href='#' id="lo">A Complete Guide to Flexbox</a>
</div>
</div>
<section class="vc">
<div class="ca">
<h2>Up for a challenge?</h2>
<p>Build the slide-out panel when clicking the shopping cart in the menu.</p>
</div>
<div class="cb">
<h2>Too easy?</h2>
<p>Create a hero image slider that changes the image after X amount of seconds.</p>
</div>
<div class="cc">
<h2>Too hard?</h2>
<p>That's ok! <br> <a href="#" id="call">View other projects</a></p>
</div>
</section>
<div class="slider">
<span id="slide-1"></span>
<span id="slide-2"></span>
<span id="slide-3"></span>
<div class="image-container">
<img src="https://cdn.pixabay.com/photo/2018/05/30/00/24/thunderstorm-3440450_960_720.jpg" class="slide"
width="800" height="450" />
<img src="https://cdn.pixabay.com/photo/2015/06/19/21/24/avenue-815297_960_720.jpg" class="slide"
width="800" height="450" />
<img src="https://cdn.pixabay.com/photo/2018/01/14/23/12/nature-3082832_960_720.jpg" class="slide"
width="800" height="450" />
</div>
<div class="buttons">
<a href="#slide-1"></a>
<a href="#slide-2"></a>
<a href="#slide-3"></a>
</div>
</div>
</div>
</section>
</div>
</body>
<footer>
<section>
<div class="fo">
<h2>Frontend Practice - © 2023</h2>
</div>
<div class="ft">
<ul id="ft">
<li><a href="#" id="fq">Home</a></li>
<li><a href="#" id="fq">Projects</a></li>
<li><a href="#" id="fq">FAQ</a></li>
<li><a href="#" id="fq">Newsletter</a></li>
<li><a href="#" id="fq">Contact</a></li>
</ul>
</div>
</section>
</footer>
</html>