-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (31 loc) · 1.76 KB
/
index.html
File metadata and controls
41 lines (31 loc) · 1.76 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
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>
<link href="css/style.css" type="text/css" rel="stylesheet"/>
</head>
<body>
<div class="header">
<a href="home.html" class="brand">StackOverflow-lite</a>
<div class="header-right">
<a href="signup.html">Sign Up</a>
<a href="login.html">Login</a>
</div>
</div>
<div class="main-column">
<div class="centered">
<h2>Ask questions</h2>
<p>This website serves as a platform for users to ask and answer questions, and, through membership and active participation, to vote questions and answers up or down and edit questions and answers.Feel free to ask all programming questions that you have.Dont be stuck out there yet there is solution to everything.Stack Overflow only accepts questions about programming that are tightly focused on a specific problem.Focus on questions about an actual problem you have faced. Include details about what you have tried and exactly what you are trying to do</p>
</div>
</div>
<div class="main-column">
<div class="centered">
<h2>Get answers</h2>
<p>Its is not always a guarantee that you will get answers to all of your questions.To get better answers, you may need to put additional effort into your question. Edit your question to provide status and progress updates. Document your own continued efforts to answer your question. This will naturally bump your question to the homepage and get more people interested in it.Reading answered questions provides lot of knowledge as it starts from a problem, has all the possible solutions and a best solution as well.</p>
</div>
</div>
</div>
<footer class="footer">
<p>© Copyright 2018, StackOverflow-lite</p>
</footer>
</body>
</html>