-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (102 loc) · 3.71 KB
/
index.html
File metadata and controls
114 lines (102 loc) · 3.71 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>How-to</title>
<link href="https://fonts.googleapis.com/css?family=Russo+One|Ubuntu" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Notable|Playfair+Display|Raleway&display=swap" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<header id='scroll-nav'>
<div class="nav-wrapper">
<nav class="navbar">
<a id="logo" href="index.html">How-to</a>
<div class="links">
<a class="nav-link" href="about.html">About us</a>
<a class="nav-link" href="login.html">Sign up</a>
</div>
</nav>
</div>
<div class="mobile-container">
<div class="topnav">
<div id="myLinks">
<a href="about.html">About</a>
<a href="login.html">Sign up</a>
</div>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
</div>
</header>
<section class="hero">
<div class="hero-image" id="hero0"></div>
<div class="intro">
<div class="static-title"><h1>How to </h1></div>
<div class='animated-title' id="slider">
<div class="title-container">
<div class="slide"><h1>build a tree house?</h1></div>
<div class="slide"><h1>make the perfect pancakes?</h1></div>
<div class="slide"><h1>put your baby to sleep?</h1></div>
<div class="slide"><h1>clean wine stains?</h1></div>
<div class="slide"><h1>train your puppy?</h1></div>
</div>
</div>
<div class="caption">
<p>Share your expertise! Learn how to do something new! How-to is a community for sharing how-to's on your favorite subjects. Join us!</p>
</div>
<form action="/create" method="POST">
<div class='form-item'>
<a href=""><button class="main-btn" type="submit" id="signup">Sign up</button></a>
</div>
<div class='form-item'>
<a href="" class="how">
<span>How it works</span>
<div class='button-cont'><button class="line-btn"></button></div>
</a>
</div>
</form>
</section>
<section class="categories">
<h2 class="cat-title">Explore our tutorials</h2>
<nav class="cat-nav">
<a href="" class="cat-item">Popular</a>
<a href="" class="cat-item">Cooking</a>
<a href="" class="cat-item">House</a>
<a href="" class="cat-item">Textiles</a>
<a href="" class="cat-item">Decoration</a>
</nav>
<div class="featured">
<div class="featured-item">
<img src="img/howto1.jpg" alt="">
<p class="item-label">Build Kitchen Cabinets</p>
</div>
<div class="featured-item">
<img src="img/howto2.jpg" alt="">
<p class="item-label">Decorate for a House Party</p>
</div>
<div class="featured-item">
<img src="img/howto3.jpg" alt="">
<p class="item-label">Make Gluten-free Donuts</p>
</div>
<div class="featured-item">
<img src="img/howto4.jpg" alt="">
<p class="item-label">Saw a Hem</p>
</div>
</div>
<div class='see-more'>
<a href=""><button class="main-btn" type="submit">See more</button></a>
</div>
</section>
<!-- js -->
<script src='https://code.jquery.com/jquery-2.2.4.min.js'></script>
<script src="js/nav-scroll.js"></script>
<script src="js/mobile-toggle.js"></script>
</body>
</html>