-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapproach.html
60 lines (57 loc) · 1.6 KB
/
approach.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
<!Doctype html>
<html>
<head><title>Contact me</title>
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
</head>
<style>
.first{
font-size:50px;
color:rgb(0, 0, 0);
}
body{
margin:0px;
background-image:url("pexels-negative-space-33999.jpg");
background-repeat: no-repeat;
background-size: cover;
overflow: hidden;
width: 100vw;
height:100vh;
font-family:cursive;
}
.flex-container {
display: flex;
flex-wrap: nowrap;
width:70%;
margin-left:370px;
margin-top:160px;
}
.flex-container > div {
background-image:linear-gradient( rgb(250, 252, 254),rgb(255, 204, 204));
width: 250px;
margin: 10px;
height:200px;
text-align: center;
line-height: 75px;
font-size: 20px;
color:rgb(0, 0, 0);
opacity: 0.8;
}
.img{
width:30px;
margin-top:20px;
}
#H_icon{
float: left;font-size: 50px; border: aliceblue;background-color: rgb(0, 0, 0);color: white;
}
#H_icon:hover{background-color: goldenrod;color: black;
}
</style>
<body>
<div id="H_icon"><a href="FrontPage.html"><ion-icon id="H_icon" name="home"></ion-icon></a></div>
<center><div class="first">Contact Me</div></center>
<div class="flex-container">
<div class="one">My Accounts<span class="content"><br><img src="in1.png" class="img">  <img src="gog.png" class="img">  <img src="face.png" class="img">  <img src="insta1.png" class="img"></span></div>
<div class="two">My Personal Adderess<span><br><img src="calu.jpg" class="img">  <img src="loca.jpg" class="img"></div>
</div>
</body>
</html>