-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (48 loc) · 1.5 KB
/
index.html
File metadata and controls
57 lines (48 loc) · 1.5 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" type="image/png" href="imgs/cc-logo.png">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Rubik:300,400,500,700&display=swap" rel="stylesheet">
<title>Coding Cougs</title>
</head>
<body>
<!-- <div id="nav-bar">
<div class="inner-nav-bar-wrapper">
<a>Home</a>
<a>Hackathons</a>
<a>Events</a>
<button>Contact Us</button>
</div>
</div> -->
<div id="header-bar">
<img src="imgs/cc-logo.png">
<a>Home</a>
<a>Hackathons</a>
<a>Events</a>
<button>Contact Us</button>
</div>
<div id="landing-page-img">
<img class="image" src="imgs/test2.jpg">
</div>
<!-- <h1>Coding Cougs</h1>
<p class="sub">@ WSUTC</p> -->
<div class="dummy-text-container">
<p class="dummy-text">"...it's people like [the Coding Cougs] that keeps my passion for Computer Science is strong."</p>
<p class="fake-cite">--Bill Gates</p>
</div>
<div class="code-wrapper">
<div class="code-container">
<p class="code">printf("%s", "Hello World");</p>
<p class="code">console.log("Hello World");</p>
<p class="code">print("Hello World")</p>
<p class="code">std::cout << "Hello Wolrd";</p>
<p class="code">System.out.println("Hello World");</p>
</div>
</div>
<h1>What we do</h1>
<img class="flavor-img" src="imgs/code.jpg">
<p class="flavor-text">Code.</p>
<p class="flavor-text">...that's it.</p>
</body>
</html>