-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (105 loc) · 3.51 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="test.css">
<title>My Webpage</title>
</head>
<body>
<div class="container">
<div class="bar">
<div class="logo">
<img src="1200px-Service_mark.svg.png" width="100">
</div>
<nav>
<ul>
<li><a href="">Home</a></li>
<li><a href="">About</a></li>
<li><a href="">Contact</a></li>
</ul>
</nav>
</div>
<div class="row">
<div class="col-1">
<h1>KEY OF <br>SUCCESS</h1>
<p>"Your work is going to fill a large part of your life, <br>and the only way to be truly satisfied is to do what you believe is great work.<br> And the only way to do great work is to love what you do. <br>If you haven't found it yet, keep looking. Don't settle. <br>As with all matters of the heart, you'll know when you find it."<br>
―Steve Jobs<br><small>CEO and co-founder of appleInc.,</small></p>
</div>
<div class="col-1">
<img src="kisspng-steve-jobs-apple-ii-i-want-to-put-a-ding-in-the-un--5b75d3dd1f80c5.602909511534448605129.png">
</div>
</div>
</div>
<div class="product">
<div class="smallContainer">
<h2 class="subtitle">Product</h2>
<hr width="300" class="line">
<div class="row">
<div class="col-2">
<img height="250" src="https://cdn.shopify.com/s/files/1/0065/4242/t/26/assets/mhome.jpg?v=17509700649080606408">
<h4>Shoes</h4>
<p class="item-description">Ordet sko kan også bli brukt om forskjellige gjenstander<br> som likner på hvordan sko fungerer eller er utformet,<br> for eksempel kabelsko, hestesko, doppsko og bremsesko.</p>
<p><b>¥5,000</b></p>
</div>
<div class="col-2">
<img height="250" src="https://images.unsplash.com/photo-1571455786673-9d9d6c194f90?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&w=1000&q=80">
<h4>T-Shirt</h4>
<p class="item-description">T-skjorte, også kalt T-trøye, er en enkel skjorte eller trøye med<br> rette linjer og korte eller lange ermer,som gir den form av en T.
<p><b>¥3,000</b></p>
</div>
<div class="col-2">
<img height="250" src="https://media.vanityfair.com/photos/53e14738f89d5bb140c761ce/master/w_1600%2Cc_limit/jeans-stories-sexiest-denim-ads-ss03.jpg">
<h4>Pomade</h4>
<p class="item-description">Pomade er salvelignende, ofte litt harde parfymerte<br> blandinger til kosmetisk bruk. </p>
<p><b>¥1,500</b></p>
</div>
</div>
</div>
</div>
<div class="contact">
<h2 class="subtitle">Contact Us</h2>
<hr width="300" class="line">
<div class="form">
<form>
<label>Name : </label><br>
<input type="text" name="name"><br>
<label>Email : </label><br>
<input type="email" name="email"><br>
<label>Message : </label><br>
<textarea id="textarea" rows="8" cols="40"></textarea><br>
<input class="button" type="submit" name="submit" value="Send">
</form>
</div>
</div>
<div class="footer">
<div class="container">
<div class="row">
<div class="col-3">
<h3>Download Our Appication</h3>
<p>Download for Android and iOS mobile</p>
</div>
<div class="col-3">
<img src="1200px-Service_mark.svg.png" width="100">
<p>Our greatest weakness lies in giving up. <br>The most certain way to succeed is always to try just one more time</p>
</div>
<div class="col-3">
<h3>Get to Know Us</h3>
<ul>
<li>Careers</li>
<li>Blog</li>
<li>Other Service</li>
</ul>
</div>
<div class="col-3">
<h3>Folow Us</h3>
<ul>
<li>Facebook</li>
<li>Instagram</li>
<li>Twitter</li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>