-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (74 loc) · 2.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects</title>
<style>
body
{
word-spacing: 0.3rem;
background-color: #B2C5D1;
color:#2A3F4D;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
h2 {
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-weight: normal;
}
div {
background-color: #2A3F4D;
color:white;
width: 60%;
border-radius: 10px;
margin: 2rem auto;
padding: 0.7rem;
}
h2 {
background-color: #2A3F4D;
color: white;
text-align: center;
width:20%;
border-radius: 10px;
margin: 2rem auto;
padding: 0.7rem;
}
a {
text-decoration: none;
background-color: #2A3F4D;
color:white;
border: 2px solid #2A3F4D;
padding: 0.5rem;
border-radius: 10px;
}
a:hover {
background-color: #2A3F4D;
text-decoration: underline;
color:#70A9CC;
}
.btn {
background-color: #70A9CC;
color:#2A3F4D
}
</style>
</head>
<body>
<p><a href="https://idarayo.github.io/porfolioweb/">Go to Home</a></p>
<h2>Projects</h2>
<div class="project">
<h3>Project 1</h3>
<p>This is a blog post talking on where stock photos come from and how photographers can monetize the skill. It's a book mark-up, i do not claim ownership of the text used, only the blog's styling, also the reference to the book is can be seen on the blog post.</p>
<a href="https://codepen.io/Sophia-Umeh/pen/oNOXQmo" class="btn">View Project</a>
</div>
<div class="project">
<h3>Project 2</h3>
<p>This is also a blog post, my blog post where you get to find personal information about me, my life, achievements, hobbies and others.</p>
<a href="https://codepen.io/Sophia-Umeh/pen/RwOQwRO" class="btn">View Project</a>
</div>
<div class="project">
<h3>Project 3</h3>
<p>This is a work in progress, i'm trying to make a website for my business, view at your discretion :)</p>
<a href="https://codepen.io/Sophia-Umeh/pen/oNOENbP" class="btn">View Project</a>
</div>
</body>
</html>