-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflexbox.html
More file actions
138 lines (120 loc) · 4.9 KB
/
flexbox.html
File metadata and controls
138 lines (120 loc) · 4.9 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="products.css">
<title>WebDev 2021 - Paski</title>
</head>
<body>
<div class="sidenavigation">
<a href="index.html">Home</a>
<a href="projects.html">Projects</a>
<a href="#">About Me</a>
<a href="#">Links</a>
<a href="feedback.html">Feedback * </a>
<a href="flexbox.html">Flexbox * </a>
</div>
<div class="main">
<h2>Flexbox Practice</h2>
<p>Making a Flexbox store page. I will be using flexbox to make different containers to make simple products</p>
<p>This will be put inside the div called container</p>
</div>
<div class="container-flex">
<section class="products">
<!-- Product 1 -->
<div class="product-card">
<div class="product-image">
<img src="images/logo1.png">
</div>
<div class="product-info">
<h5>Logo</h5>
<h6>40e</h6>
<p style="font-size: smaller;">Logo design and three(3) revisions to complete the design.</p>
</div>
</div>
<!-- Product 2 -->
<div class="product-card">
<div class="product-image">
<img src="images/banner1.png">
</div>
<div class="product-info">
<h5>Banner</h5>
<h6>45e</h6>
<p style="font-size: smaller;">Banner design and three(3) revisions to complete the design.</p>
</div>
</div>
<!-- Product 3 -->
<div class="product-card">
<div class="product-image">
<img src="images/website1.png">
</div>
<div class="product-info">
<h5>Website</h5>
<h6>100e</h6>
<p style="font-size: smaller;">Will create a website. Without upkeep. Three(3) revisions to complete the web design.</p>
</div>
</div>
<!-- Product 4 -->
<div class="product-card">
<div class="product-image">
<img src="images/whole.png">
</div>
<div class="product-info">
<h5>Whole Deal</h5>
<h6>800e</h6>
<p style="font-size: smaller;">Website creation, logo design and banner design. Will include one year upkeep.</p>
</div>
</div>
<!-- Product 5 -->
<div class="product-card">
<div class="product-image">
<img src="images/websitelogo.png">
</div>
<div class="product-info">
<h5>Website + Logo</h5>
<h6>200e</h6>
<p style="font-size: smaller;">Will create website and logo. Three(3) revisions to complete both designs.</p>
</div>
</div>
<!-- Product 6 -->
<div class="product-card">
<div class="product-image">
<img src="images/virtual.png">
</div>
<div class="product-info">
<h5>Webhotel</h5>
<h6>150e</h6>
<p style="font-size: smaller;">Virtual Machine and updates to the machine. Doesn't include webdesign or anything else.</p>
</div>
</div>
<!-- Product 7 -->
<div class="product-card">
<div class="product-image">
<img src="images/mail.png">
</div>
<div class="product-info">
<h5>Email</h5>
<h6>50e</h6>
<p style="font-size: smaller;">Email service. Will need the domain if you want. 500mb email box size. No HTML support.</p>
</div>
</div>
<!-- Product 8 -->
<div class="product-card">
<div class="product-image">
<img src="images/com.png">
</div>
<div class="product-info">
<h5>Domain</h5>
<h6>25e</h6>
<p style="font-size: smaller;">Will buy a domain for you. And set it up for you.</p>
</div>
</div>
</section>
<h4 style="text-align:center;">Product prices are cost per year</h4>
</div>
<div class="main">
<h1>This is still work in progress.</h1>
<p>Content will be changed and mobile menu will be added to give better experience in mobile and on tablets.</p>
</div>>
</body>
</html>