forked from yelynn1/tictactoe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
121 lines (116 loc) · 3.73 KB
/
about.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
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
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tictactoe - About</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<div class="wrapper">
<nav>
<ol>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contributors.html">Contributors</a>
</li>
</ol>
</nav>
<h1>Tictactoe</h1>
<div class="shortDescr">
<a href="https://yelynn1.github.io/tictactoe/" target="_blank" rel="noopener noreferrer">
https://yelynn1.github.io/tictactoe/
</a>
<p>Tic Tac Toe game (web version) made using HTML, JS.</p>
</div>
<div class="aboutContent">
<h2>Table of contents</h2>
<ul>
<li>
<a href="#about">About the project</a>
</li>
<li>
<a href="#tech-stack">Tech Stack</a>
</li>
<li>
<a href="#getting-started">Getting Started</a>
</li>
<li>
<a href="#prerequisites">Prerequisites</a>
</li>
<li>
<a href="#setting-up-the-project">setting up the project</a>
</li>
<li>
<a href="#issues">Issues</a>
</li>
<li>
<a href="#contributing">Contributing</a>
</li>
<li>
<a href="#code-of-conduct">Code of Conduct</a>
</li>
<li>
<a href="#license">License</a>
</li>
</ul>
<h2 id="about">About The Project</h2>
<img src="./tictactoe.png" alt="Tictactoe logo" />
<h3 id="tech-stack">Tech Stack</h3>
<ul>
<li>HTML</li>
<li>JavaScript</li>
<li>CSS</li>
</ul>
<h2 id="getting-started">Getting Started</h2>
<p>To get a local copy up and running follow these simple steps.</p>
<h3 id="prerequisites">Prerequisites</h3>
<p>There are no special requirements to play this game apart from having a Web Browser which supports HTML5 and
CSS3.</p>
<h3 id="setting-up-the-project">Setting up the Project</h3>
<ol>
<li>Clone the repo</li>
</ol>
<div class="code">
<pre>git clone https://github.com/yelynn1/tictactoe.git</pre>
</div>
<ol start="2">
<li>Clone the repo</li>
</ol>
<h2 id="issues">Issues</h2>
<p>Please file specific issues, bugs, or feature requests in our
<a href="https://github.com/yelynn1/tictactoe/issues">issue tracker</a>
. Follow the issue template while creating a new issue.
</p>
<h2 id="contributing">Contributing</h2>
<p>
Contributions are what make the open source community such an amazing place to be learn, inspire, and create.
Any contributions you make are
<strong>greatly appreciated</strong>
.
If you wish to contribute a change to any of the existing features in this repo, please review our
<a href="https://github.com/yash2189/tictactoe/blob/fix-readme/CONTRIBUTING%20GUIDE.md">contribution guide</a>
and send a
<a href="https://github.com/yelynn1/tictactoe/pulls">pull request</a>
</p>
<h2 id="code-of-conduct">Code of Conduct</h2>
<p>
We follow certain guidelines in order to maintain this repository.Please find our
<a href="https://github.com/yash2189/tictactoe/blob/fix-readme/CODE%20OF%20CONDUCT.md">code of conduct</a>
and read it carefully.
</p>
<h2 id="license">License</h2>
<p>
Distributed under the MIT License.See
<code>LICENSE</code>
for more information.
</p>
</div>
</div>
</body>
</html>