Tue, 27 Sep 2022 14:25:41 -0600
- Add HLA news
- Add font linking in HTML
0 | 1 | <!DOCTYPE html> |
2 | <html lang="en"> | |
3 | <head> | |
4 | <meta charset="utf-8"> | |
5 | <meta name="viewport" content="width=device-width"> | |
6 | <meta name="description" content="Source 2 Documentation"> | |
7 | <link rel="stylesheet" href="style.css"> | |
14
e61659f0b0be
- New font linking style
Glitchvid <Glitchvid@glitchvid.com>
parents:
13
diff
changeset
|
8 | <link rel="stylesheet" href="font.css"> |
17 | 9 | <link href="https://fonts.googleapis.com/css2?family=Rubik&display=swap" rel="stylesheet"> |
10 | <link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet"> | |
11 | <link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet"> | |
12 | ||
14
e61659f0b0be
- New font linking style
Glitchvid <Glitchvid@glitchvid.com>
parents:
13
diff
changeset
|
13 | <link rel="icon" type="image/png" href="s2favicon.png"> |
5 | 14 | <title>Source 2 Documentation Project</title> |
0 | 15 | </head> |
16 | ||
17 | <body> | |
18 | ||
19 | <div class="main" > | |
20 | ||
21 | <div id="header"> | |
22 | <img class="headerlogo" src="source2_new.svg" title="Source 2"> | |
23 | <nav> | |
24 | <ul class="buttons"> | |
25 | <a href="home.html"><li class="active">Home</li></a> | |
26 | <a href="features.html"><li>Features</li></a> | |
27 | <a href=""><li>Wiki</li></a> | |
28 | <a href="about.html"><li>About</li></a> | |
29 | </ul> | |
30 | </nav> | |
31 | </div> | |
32 | ||
33 | <div class="content"> | |
34 | <h1>Welcome to the Source 2 Documentation Project!</h1> | |
35 | <h4>This site is dedicated to documents, tutorials, and resources for the Source 2 engine.</h4> | |
36 | <hr> | |
3
cda37ab8d167
- Add content section DIV to home page
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
37 | |
0 | 38 | <h1>News:</h1> |
17 | 39 | |
40 | <div class="contentSection"> | |
41 | <h3>- Half-Life: Alyx (2020-03-21)</h3> | |
42 | <p> | |
43 | Today marks the release of HLA and the first look at what Source 2 can really achieve. | |
44 | </p> | |
45 | </div> | |
46 | ||
3
cda37ab8d167
- Add content section DIV to home page
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
47 | <div class="contentSection"> |
cda37ab8d167
- Add content section DIV to home page
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
48 | <h3>- Hello World (2020-01-01)</h3> |
cda37ab8d167
- Add content section DIV to home page
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
49 | <p> |
cda37ab8d167
- Add content section DIV to home page
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
50 | The S2DP was created in anticipation of the release of Half-Life: Alyx. Our purpose is to be a central location for Source 2 information. <br> |
cda37ab8d167
- Add content section DIV to home page
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
51 | As part of this, we'll be launching a Wiki, meant to be a cleaner and updated version of the old Valve Developer Wiki, without mixing Source and Source 2 information. |
cda37ab8d167
- Add content section DIV to home page
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
52 | <br> <br> |
cda37ab8d167
- Add content section DIV to home page
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
53 | This website is currently in-dev, with the Features section being the focus of efforts. |
cda37ab8d167
- Add content section DIV to home page
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
54 | </p> |
cda37ab8d167
- Add content section DIV to home page
Glitchvid <Glitchvid@glitchvid.com>
parents:
1
diff
changeset
|
55 | </div> |
17 | 56 | |
57 | <!-- <h1>Talk with us:</h1> | |
58 | <div class="contentSection"> | |
59 | <h4>- Matrix</h4> | |
60 | <h4>- Forums</h4> | |
61 | <h4>- Mailing List</h4> | |
62 | </div> --> | |
63 | ||
64 | ||
0 | 65 | </div> |
66 | ||
67 | <div class="footer"> | |
11 | 68 | <p class="copyright">Source Creator Collective – 2020</p> |
0 | 69 | </div> |
70 | ||
71 | </div> | |
72 | ||
73 | </body> | |
74 | ||
75 | </html> |