-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ins.aspx
116 lines (100 loc) · 3.26 KB
/
Ins.aspx
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
<%@ Page Title="" Language="C#" MasterPageFile="~/Site1.Master" AutoEventWireup="true" CodeBehind="Ins.aspx.cs" Inherits="oragnic.Ins" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<style>
#contact {
color: #98bd68;
box-shadow: 0 3px #98bd68;
}
#ins1 {
}
#ins_text {
background-image: url(Image/data_image/ins/banner-shop.jpg);
height: 200px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
margin-bottom: 50px;
}
#ins_text h2 {
text-transform: uppercase;
color: #fff;
margin-bottom: 15px;
}
#ins_text p {
color: #fff;
font-size: 15pt;
}
#ins_img {
width: 90%;
margin: 0 auto;
display: flex;
}
.ims_img_min {
width: 33%;
}
.ims_img_min img {
width: 300px;
padding: 20px;
}
#show_more {
width: 90%;
margin: 0 auto;
}
#show_more_min {
text-align: center;
margin: 70px 0;
}
#show_more_min a {
padding: 20px 50px;
font-size: 20pt;
background: black;
color: #fff;
box-shadow: 0 2px 44px -4px grey;
text-decoration: none;
text-transform: uppercase;
}
#show_more_min a:visited {
color: white
}
#show_more_min a:hover {
background: #98bd68;
color: #fff;
text-transform: uppercase;
transition: 0.3s;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div>
<div id="ins1">
<div id="ins_text">
<h2>Photo Instagram</h2>
<p>Oragnic | <span style="color:#98bd68;">@vqh.2602</span></p>
</div>
<div id="ins_img">
<div class="ims_img_min">
<img src="Image/data_image/ins/1.jpg" />
<img src="Image/data_image/ins/3.jpg" />
</div>
<div class="ims_img_min">
<img src="Image/data_image/ins/2.jpg" />
<img src="Image/data_image/ins/4.jpg" />
<img src="Image/data_image/ins/5.jpg" />
</div>
<div class="ims_img_min">
<img src="Image/data_image/ins/6.jpg" />
<img src="Image/data_image/ins/7.jpg" />
</div>
<div class="ims_img_min">
<img src="Image/data_image/ins/8.jpg" />
</div>
</div>
<div id="show_more">
<div id="show_more_min">
<a href ="https://www.instagram.com/vqh.2602/">nhiều hơn</a>
</div>
</div>
</div>
</div>
</asp:Content>