forked from RanieryAV/Computacao-Grafica-AP-01-Projeto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (55 loc) · 2.09 KB
/
index.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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="/css/style.css" />
<title>Computação Gráfica AP 01 Projeto</title>
</head>
<body>
<script src="/js/main.js" type="module"></script>
<main id="main">
<section>
<div class="star star1"></div>
<div class="star star2"></div>
<div class="star star3"></div>
<div class="star star4"></div>
<div class="star star5"></div>
<div class="star star6"></div>
<div class="star star7"></div>
<div class="star star8"></div>
</section>
<div id="welcome">
<h2>
<span class="hashtag"># Solar System 🌍</span>
<strong>From UNIVERSIDADE FEDERAL DO CEARA (UFC)</strong>
By
<a href="https://www.linkedin.com/in/marcosvinciusandradedesousa/" target="_blank"
>Marcos Vinicius Andrade</a
>, <a href="https://github.com/marcio-loiola" target="_blank">Márcio Loiola</a>,
<a href="https://github.com/RanieryAV" target="_blank">Raniery Alves</a>,
<a href="https://github.com/Viennel" target="_blank">Vinicius Luis</a>,
<a href="https://github.com/yannluk4" target="_blank"> Yann Lucca </a>,
<a href="https://www.linkedin.com/in/gabrielvasconcelossantos/" target="_blank">
Gabriel Vasconcelos
</a>
</h2>
<blockquote>
<p>
This work is vital for learning computer graphics. It uses WebGL to implement OpenGL
with ThreeJS in the browser.
</p>
</blockquote>
</div>
<div id="radio-input-container">
<div class="radio-input">
<input checked="" type="radio" id="value-1" name="value-radio" value="value-1" />
<div class="circle"></div>
<input type="radio" id="value-2" name="value-radio" value="value-2" />
<div class="circle"></div>
<input type="radio" id="value-3" name="value-radio" value="value-3" />
<div class="circle"></div>
</div>
</div>
</main>
</body>
</html>