-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebpage.html
More file actions
148 lines (139 loc) · 4.35 KB
/
Webpage.html
File metadata and controls
148 lines (139 loc) · 4.35 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!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">
<title>First WebPage</title>
<link rel="stylesheet" href ="style.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- menu bar-->
<nav class="menu">
<ul>
<li><a href="#"><i class="fa fa-home"></i>Home</a> </li>
<li><a href="#"><i class= "fa fa-search"></i>Search</a></li>
<li><a href="#"><i class= "fa fa-envelope"></i>Contact</a></li>
<li><a href="#"><i class= "fa fa-user"></i>Login</a></li>
</ul>
</nav>
<!-- article-->
<div class="article">
<div class="pic">
<img src="pic_trulli.jpg" alt="picture">
</div>
<div class="title">
<h1>Title for the article</h1>
</div>
<div class="content">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.s</p>
</div>
</div>
<!-- information-->
<div class="checkoutbox">
<div class="box1">
<div class="title1">
<h1>Billing Address</h1>
</div>
<div class="one">
<h5><i class="fa fa-user">Full Name</i></h5>
<input type="text" placeholder="John M.Doe">
</div>
<div class="two">
<h5><i class="fa fa-envelope">Email</i></h5>
<input type="email" placeholder="michael@example.com">
</div>
<div class="three">
<h5><i class="fa fa-address-book">Address</i></h5>
<input type="text" placeholder="830 Hillview Dr">
</div>
<div class="four">
<h5><i class="fa fa-building">City</i></h5>
<input type="text" placeholder="san Jose">
</div>
</div>
<div class="box2">
<div class="title2">
<h1>Payment</h1>
</div>
<div class="five">
<h5>Accepted Cards</h5>
<img src="" alt="visa pic">
<img src="" alt="applePay pic">
<img src="" alt="discover pic">
<img src="" alt="masterCard pic">
</div>
<div class="six">
<h5>Name on Card</h5>
<input type="text" placeholder="John M.Doe">
</div>
<div class="seven">
<h5>Credit Card Number</h5>
<input type="texts" placeholder="xxxx-xxxx-xxxx-xxxx">
</div>
<div class="nine">
<h5>Exp Month</h5>
<input type="month" placeholder="Augest">
</div>
</div>
<div class="cart">
<table>
<tr>
<th>Cart</th>
<th><i class="fa fa-shopping-cart">4</i></th>
</tr>
<tr>
<td>items</td>
<td>$2</td>
</tr>
<tr>
<td>items</td>
<td>$5</td>
</tr>
<tr>
<td>items</td>
<td>$8</td>
</tr>
<tr>
<td>items</td>
<td>$15</td>
</tr>
<tr>
<td>Total</td>
<td>$30</td>
</tr>
</table>
</div>
</div>
<div class="col">
<div>
<h5>State</h5>
<input type="text" placeholder="CA">
</div>
<div>
<h5>Zip</h5>
<input type="text" placeholder="90001">
</div>
<div>
<h5>Exp Year</h5>
<input type="text" placeholder="2018">
</div>
<div>
<h5>CVV</h5>
<input type="text" placeholder="123">
</div>
</div>
<div class="shippingAddress">
<input type="checkbox">
<label> Shipping address same as billing</label>
<input class="next" type="submit" value="Continue to checkout">
</div>
<!-- history-->
<div class="history">
<table>
</table>
</div>
</body>
</html>