-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebDesign.html
More file actions
74 lines (62 loc) · 1.36 KB
/
WebDesign.html
File metadata and controls
74 lines (62 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My WebDevelopment</title>
</head>
<body>
<h1>Web Projects</h1>
<article>
<h2>My own Website</h2>
<div>
<img src="bin/photos/chestnutsprog/programingStats.png" alt="">
</div>
</article>
<article>
<h2><a href="https://monteverdecatering.com/">Monteverde Catering</a> </h2>
<section>
<div>
<h3>
Before on Desktop
</h3> <br>
<img src="bin/photos/monteverde/BeforeDesktop.png" alt="">
</div>
<div>
<h3>
After on Desktop
</h3> <br>
<img src="bin/photos/monteverde/afterDesktop.png" alt="">
</div>
</section>
<section>
<div>
<h3>
Before on Mobile
</h3>
<img src="bin/photos/monteverde/beforeMobile.png" alt="">
</div>
<div>
<h3>
After on Mobile
</h3>
<img src="bin/photos/monteverde/afterMobile.png" alt="">
</div>
</section>
</article>
<style>
div{
width: 46%;
float: left;
margin: 10px;
}
img{
width: 100%;
box-shadow: #1c1916 10px 10px 10px;
}
article{
width: 100%;
overflow: hidden;
}
</style>
</body>
</html>