Skip to content

Commit fbefdde

Browse files
committed
Initial commit
0 parents  commit fbefdde

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1961
-0
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
135 KB
Loading

1.jpg

77.6 KB
Loading

1.png

847 KB
Loading

Community Guidelines.html

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=, initial-scale=1.0">
7+
<link rel="stylesheet" href="CommunityGuidelines.css">
8+
<title>Community Guideline</title>
9+
</head>
10+
<body>
11+
<h1>Community Guidelines</h1>
12+
<h2>Maintain Transparency and Consistency Moderating Content</h2>
13+
<button type="button" class="cancelbtn"><a href="index.html">Go Home</a></button>
14+
<p>
15+
16+
Violations of community guidelines are inevitable. Being clear about consequences is just as important as clearly stating the rules. Include a section that lists the actions taken in the event of a transgression. Keep it fair and uncomplicated and provide explanations for actions taken by moderators. Some information you should include is: <br>
17+
18+
What is the penalty for first time, second time, third time offenders? <br> <br>
19+
How many violations are allowed before suspension/ban? <br> <br>
20+
Will posts that go against community guidelines be deleted? <br> <br>
21+
Does your organization have a zero-tolerance policy for certain behavior? <br><br>
22+
As mentioned earlier, don’t be too quick to dish out punishment. There are better ways of dealing with guideline violations, whether they’re on purpose or by mistake. For example, you can guide the discourse of your online community. Offer up conversation prompts or industry news. This shows that you’re genuinely interested in community engagement and keep the conversation positive. <br><br>
23+
24+
It’s also crucial that your moderation team is consistent in what they remove and their reasoning for doing so. Preferential treatment or inconsistency will raise alarm and perhaps even invite an increase in bad behavior. <br><br>
25+
26+
</p>
27+
</body>
28+
</html>

CommunityGuidelines.css

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
h1{
2+
background-color: #333;
3+
padding: 20px;
4+
font-family: 'Dosis', sans-serif;
5+
border-radius: 5px;
6+
color: beige;
7+
text-align: center;
8+
}
9+
h2{
10+
11+
padding: 20px;
12+
font-family: 'Dosis', sans-serif;
13+
border-radius: 5px;
14+
color: #333;
15+
text-align: center;
16+
}
17+
18+
19+
p{
20+
margin: 10px;
21+
margin-top: 0px;
22+
margin-left: 50px;
23+
margin-right: 50px;
24+
padding-left: 80px;
25+
padding-right: 80px;
26+
padding: 40px;
27+
padding-top: 15px;
28+
font-family: 'Open Sans', sans-serif;
29+
30+
}
31+
button{
32+
float: right;
33+
margin-top: -40px;
34+
padding: 10px;
35+
margin-right: 120px;
36+
background-color: #FFC000;
37+
border-radius: 5px;
38+
border: 0px;
39+
40+
41+
}
42+
button>a{
43+
text-decoration: none;
44+
color: black;
45+
}
46+
button:hover{
47+
opacity: 50%;
48+
}
49+
button>a:hover{
50+
color: rgb(25, 124, 91);
51+
52+
}
53+
@media screen and (max-width:600px){ /*Changes text color when screen size becomes 600px*/
54+
p{
55+
margin: 10px;
56+
padding-left: 10px;
57+
padding-right: 10px;
58+
padding: 10px;
59+
font-family: 'Open Sans', sans-serif;
60+
61+
}
62+
h2{
63+
64+
padding: 10px;
65+
font-family: 'Dosis', sans-serif;
66+
border-radius: 5px;
67+
color: #333;
68+
text-align: center;
69+
}
70+
button{
71+
float: right;
72+
margin-top: -30px;
73+
padding: 10px;
74+
margin-right: 10px;
75+
background-color: #FFC000;
76+
border-radius: 5px;
77+
border: 0px;
78+
79+
80+
}
81+
}

ContactUs.css

+214
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,214 @@
1+
body{
2+
background-color: rgb(231, 229, 229);
3+
}
4+
h1{
5+
background-color: #333;
6+
padding: 20px;
7+
padding-bottom: 40px;
8+
font-family: 'Dosis', sans-serif;
9+
border-radius: 5px;
10+
color: beige;
11+
text-align: center;
12+
margin-bottom: 0px;
13+
}
14+
a>img{
15+
float: right;
16+
}
17+
a>img:hover{
18+
opacity: 50%;
19+
}
20+
nav{
21+
22+
float: left;
23+
}
24+
nav img{
25+
width: 1.8%;
26+
}
27+
button{
28+
float: right;
29+
padding: 10px;
30+
background-color: #FFC000;
31+
border-radius: 5px;
32+
border: 0px;
33+
34+
}
35+
button>a{
36+
text-decoration: none;
37+
color: #333;
38+
}
39+
button>a:hover{
40+
color: aqua;
41+
}
42+
button:hover{
43+
opacity: 50%;
44+
}
45+
form{
46+
float: right;
47+
margin: 20px;
48+
margin-top: 20px;
49+
position: absolute;
50+
top: 22%;
51+
left: 35%;
52+
background-color: #ffffff;
53+
border-radius: 15px;
54+
padding: 20px;
55+
height: 530px;
56+
57+
58+
}
59+
div{
60+
height: 571px;
61+
width: 450px;
62+
background-color: #121567;
63+
border-radius: 10px;
64+
margin-top: 49px;
65+
margin-left: 10px;
66+
}
67+
div>img{
68+
width: 50%;
69+
padding-left: 95px;
70+
padding-top: 145px;
71+
}
72+
73+
form>p{
74+
color: black;
75+
font-family: 'Dosis', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
76+
77+
}
78+
input[type="submit"]{
79+
background-color: #FFC000;
80+
border-radius: 5px;
81+
color: white;
82+
padding: 12px 20px;
83+
border: none;
84+
cursor: pointer; /*changes cursor when hover over it*/
85+
width: 100%;
86+
}
87+
input[type="submit"]:hover{
88+
opacity: 80%;
89+
color: black;
90+
}
91+
input[type="text"],
92+
input[type="number"],
93+
input[type="email"]
94+
{
95+
width: 30%; /*filling the border*/
96+
padding: 12px; /*space between box and place-holder*/
97+
border: 1px solid #ccc; /*border to input text are*/
98+
border-radius: 5px;
99+
margin: 10px;
100+
font-size: small;
101+
102+
}
103+
select,
104+
textarea{
105+
width: 91.5%; /*filling the border*/
106+
padding: 12px; /*space between box and place-holder*/
107+
border: 1px solid #ccc; /*border to input text are*/
108+
border-radius: 5px;
109+
margin: 10px;
110+
font-size: small;
111+
112+
}
113+
fieldset{
114+
width: 91.1%;
115+
background-color: #fff;
116+
border: 1px solid #ccc;
117+
border-radius: 5px;
118+
}
119+
120+
/* #firstname{
121+
float: left;
122+
}
123+
#lastname{
124+
float: right;
125+
}
126+
127+
#email{
128+
float: left;
129+
}
130+
#phonenumber{
131+
float: right;
132+
} */
133+
@media screen and (max-width:600px){
134+
nav img{
135+
width: 5.8%;
136+
}
137+
div>img{
138+
width: 0%;
139+
padding-left: 0%;
140+
padding-top: 0%;
141+
}
142+
form{
143+
float: left;
144+
margin: 5px;
145+
position: absolute;
146+
top: 30%;
147+
left: 0%;
148+
background-color: #ffffff;
149+
border-radius: 15px;
150+
padding: 20px;
151+
height: 705px;
152+
}
153+
button{
154+
float: right;
155+
padding: 10px;
156+
background-color: #FFC000;
157+
border-radius: 5px;
158+
border: 0px;
159+
margin-top: 10px;
160+
161+
}
162+
div{
163+
height: 0px;
164+
width: 0%;
165+
background-color: #121567;
166+
border-radius: 0px;
167+
margin-top: 0px;
168+
margin-left: 0px;
169+
margin-right: 0px;
170+
}
171+
input[type="submit"]{
172+
background-color: #FFC000;
173+
border-radius: 5px;
174+
color: white;
175+
padding: 12px 20px;
176+
border: none;
177+
cursor: pointer; /*changes cursor when hover over it*/
178+
width: 100%;
179+
margin-top: -20px;
180+
}
181+
input[type="submit"]:hover{
182+
opacity: 80%;
183+
color: black;
184+
}
185+
input[type="text"],
186+
input[type="number"],
187+
input[type="email"]
188+
{
189+
width: 90%; /*filling the border*/
190+
padding: 12px; /*space between box and place-holder*/
191+
border: 1px solid #ccc; /*border to input text are*/
192+
border-radius: 5px;
193+
margin: 10px;
194+
font-size: small;
195+
196+
}
197+
select,
198+
textarea{
199+
width: 91.5%; /*filling the border*/
200+
padding: 12px; /*space between box and place-holder*/
201+
border: 1px solid #ccc; /*border to input text are*/
202+
border-radius: 5px;
203+
margin: 10px;
204+
font-size: small;
205+
206+
}
207+
fieldset{
208+
width: 91.1%;
209+
background-color: #fff;
210+
border: 1px solid #ccc;
211+
border-radius: 5px;
212+
}
213+
214+
}

ContactUs.html

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<link rel="preconnect" href="https://fonts.googleapis.com">
8+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9+
<link href="https://fonts.googleapis.com/css2?family=Public+Sans:wght@200&display=swap" rel="stylesheet">
10+
<link rel="preconnect" href="https://fonts.googleapis.com">
11+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
12+
<link href="https://fonts.googleapis.com/css2?family=Public+Sans:wght@200&display=swap" rel="stylesheet">
13+
<title>ContactUs</title>
14+
<link rel="stylesheet" href="ContactUs.css">
15+
</head>
16+
<body>
17+
<h1>Contact Us
18+
<nav>
19+
<a href="https://www.instagram.com" target="_blank"><img src="instagram.png" alt="instagram"></a>
20+
<a href="https://www.facebook.com" target="_blank"><img src="facebook.png" alt="facebook"></a>
21+
<a href="https://www.Twitter.com" target="_blank"><img src="twitter.png" alt="twitter"></a>
22+
<a href="https://www.google.com" target="_blank"><img src="gmail.png" alt="gmail"></a>
23+
</nav>
24+
</h1>
25+
26+
<button type="button" class="cancelbtn"><a href="dumbaloo.html">Go Home</a></button>
27+
<div><img src="logoo.png" alt="">
28+
</div>
29+
<form>
30+
<p style="color:red;font-size: smaller;">Requires Field are followed by *</p>
31+
<p class="fn">First Name: * <input type = "text" name = "FirstName" id="firstname" placeholder="Shivam" required></p>
32+
<p>Last Name: * <input type = "text" id="lastname" name = "LastName"placeholder="Sharma" required></p>
33+
<p>Email: * <input type="email" name="email" id="email" required placeholder="[email protected]"></p>
34+
<p>Phone Number: * <input type="Number" id="phonenumber" name="PhoneNumber" required placeholder="+91 5468362876"></p>
35+
<fieldset>
36+
<legend style="margin:5px ;">Query Regarding: * </legend>
37+
<p style="color: black;">News <input type="radio" name="News" id ="News" required> &nbsp;&nbsp;&nbsp;
38+
Website <input type="radio" name="Website" id ="Website" required>&nbsp; &nbsp; &nbsp;
39+
Production <input type="radio" name="Production" id ="Production" required>&nbsp; &nbsp; &nbsp;
40+
Entertainment <input type="radio" name="Entertainment" id ="Entertainment" required>&nbsp; &nbsp; &nbsp;
41+
Others <input type="radio" name="Others" id ="others" required></p>
42+
</fieldset>
43+
<p>Message: <textarea name="message" id="message" cols="100" rows="7" placeholder="Enter your message"></textarea></p>
44+
<input type="submit" value="Submit Now">
45+
</form>
46+
47+
48+
</body>
49+
</html>

0 commit comments

Comments
 (0)