-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.html
92 lines (83 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- custom styles -->
<link rel="stylesheet" type="text/css" href="main.css">
<link type="text/css" rel="stylesheet" href="main.css">
<title>CSS Grid Challenges</title>
</head>
<body>
<div class="header">
<div class="content">
<img src="ducky.svg" alt="Ducky Logo" width="150">
<h1>Everything's Ducky</h1>
<nav>
<ul>
<li>Catalog</li>
<li>Locations</li>
<li>Events</li>
<li>Contact</li>
<li>
<input placeholder="Search"></input>
<button>Push Me</button>
</li>
</ul>
</nav>
</div>
</div>
<div class="content">
<div>
<h2>Title of first article</h2>
<p>The first article on the page is just text.</p>
</div>
<div>
<h2>Title of second article</h2>
<p>This is the description for the second article, and it contains a useful unordered list of information.</p>
<p><strong>Things we like:</strong></p>
<ul>
<li>Computers</li>
<li>Mobile Devices</li>
<li>Books</li>
<li>Sesquatch</li>
</ul>
</div>
<div class="row">
<div class="column four">
<div class="note">
<h2>Buttons</h2>
<button>One</button>
<button>Two</button>
<button>Three</button>
<p>These are the buttons.</p>
</div>
</div>
<div class="column four">
<div class="note">
<h2>Important List</h2>
<ul>
<li>First</li>
<li>Second</li>
<li>Third</li>
<li>Fourth</li>
</ul>
</div>
</div>
<div class="column four">
<div class="request">
<h2>Request</h2>
<div>
<p>Can we get the buttons in cornflower blue?</p>
<button>Submit</button>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="content">
This is the footer
</div>
</div>
</body>
</html>